Skip to content

Commit 952706e

Browse files
authored
fix(site): HealthPage/WorkspaceProxyPage: adjust border colour for unhealthy regions (#11516)
1 parent e77b1a5 commit 952706e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

site/src/pages/HealthPage/WorkspaceProxyPage.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,11 @@ export const WorkspaceProxyPage = () => {
5555
key={region.id}
5656
css={{
5757
borderRadius: 8,
58-
border: `1px solid ${theme.palette.divider}`,
58+
border: `1px solid ${
59+
region.healthy
60+
? theme.palette.divider
61+
: theme.palette.warning.light
62+
}`,
5963
fontSize: 14,
6064
}}
6165
>

0 commit comments

Comments
 (0)