mirror of
https://github.com/coder/coder.git
synced 2026-09-24 15:04:27 +08:00
fix(site): HealthPage/WorkspaceProxyPage: adjust border colour for unhealthy regions (#11516)
This commit is contained in:
@@ -55,7 +55,11 @@ export const WorkspaceProxyPage = () => {
|
||||
key={region.id}
|
||||
css={{
|
||||
borderRadius: 8,
|
||||
border: `1px solid ${theme.palette.divider}`,
|
||||
border: `1px solid ${
|
||||
region.healthy
|
||||
? theme.palette.divider
|
||||
: theme.palette.warning.light
|
||||
}`,
|
||||
fontSize: 14,
|
||||
}}
|
||||
>
|
||||
|
||||
Reference in New Issue
Block a user