File tree Expand file tree Collapse file tree 1 file changed +11
-6
lines changed
site/src/components/DeploySettingsLayout Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ import { Stack } from "components/Stack/Stack"
3
3
import { PropsWithChildren , FC } from "react"
4
4
import { MONOSPACE_FONT_FAMILY } from "theme/constants"
5
5
import { combineClasses } from "utils/combineClasses"
6
+ import Tooltip from "@mui/material/Tooltip"
6
7
7
8
export const EnabledBadge : FC = ( ) => {
8
9
const styles = useStyles ( )
@@ -43,18 +44,22 @@ export const NotHealthyBadge: FC = () => {
43
44
export const NotRegisteredBadge : FC = ( ) => {
44
45
const styles = useStyles ( )
45
46
return (
46
- < span className = { combineClasses ( [ styles . badge , styles . warnBadge ] ) } >
47
- Not Registered
48
- </ span >
47
+ < Tooltip title = "Workspace Proxy has never come online and needs to be started." >
48
+ < span className = { combineClasses ( [ styles . badge , styles . warnBadge ] ) } >
49
+ Never Seen
50
+ </ span >
51
+ </ Tooltip >
49
52
)
50
53
}
51
54
52
55
export const NotReachableBadge : FC = ( ) => {
53
56
const styles = useStyles ( )
54
57
return (
55
- < span className = { combineClasses ( [ styles . badge , styles . errorBadge ] ) } >
56
- Not Reachable
57
- </ span >
58
+ < Tooltip title = "Workspace Proxy not responding to http(s) requests." >
59
+ < span className = { combineClasses ( [ styles . badge , styles . warnBadge ] ) } >
60
+ Not Dialable
61
+ </ span >
62
+ </ Tooltip >
58
63
)
59
64
}
60
65
You can’t perform that action at this time.
0 commit comments