File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
site/src/components/AppLink Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import Button from "@material-ui/core/Button"
2
2
import CircularProgress from "@material-ui/core/CircularProgress"
3
3
import Link from "@material-ui/core/Link"
4
4
import { makeStyles } from "@material-ui/core/styles"
5
- import CloseIcon from " @material-ui/icons/Close"
5
+ import ErrorOutlineIcon from ' @material-ui/icons/ErrorOutline' ;
6
6
import ComputerIcon from "@material-ui/icons/Computer"
7
7
import { FC , PropsWithChildren } from "react"
8
8
import * as TypesGen from "../../api/typesGenerated"
@@ -50,7 +50,7 @@ export const AppLink: FC<PropsWithChildren<AppLinkProps>> = ({
50
50
}
51
51
if ( health === "unhealthy" ) {
52
52
canClick = false
53
- icon = < CloseIcon className = { styles . unhealthyIcon } />
53
+ icon = < ErrorOutlineIcon className = { styles . unhealthyIcon } />
54
54
}
55
55
56
56
return (
@@ -93,6 +93,6 @@ const useStyles = makeStyles((theme) => ({
93
93
} ,
94
94
95
95
unhealthyIcon : {
96
- color : theme . palette . error . main ,
96
+ color : theme . palette . warning . light ,
97
97
} ,
98
98
} ) )
You can’t perform that action at this time.
0 commit comments