Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e09cd3e commit 1a07d02Copy full SHA for 1a07d02
site/src/util/workspace.ts
@@ -64,6 +64,7 @@ export const DisplayStatusLanguage = {
64
queued: "Queued",
65
}
66
67
+// Localize workspace status and provide corresponding color from theme
68
export const getDisplayStatus = (
69
theme: Theme,
70
build: WorkspaceBuild,
@@ -85,12 +86,12 @@ export const getDisplayStatus = (
85
86
87
case "starting":
88
return {
- color: theme.palette.success.main,
89
+ color: theme.palette.primary.main,
90
status: `⦿ ${DisplayStatusLanguage.starting}`,
91
92
case "stopping":
93
- color: theme.palette.text.secondary,
94
95
status: `◍ ${DisplayStatusLanguage.stopping}`,
96
97
case "stopped":
0 commit comments