Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c6c71de

Browse files
authored
fix: change build status colors (#11985)
1 parent efac9ce commit c6c71de

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

site/src/utils/workspace.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -191,13 +191,13 @@ export const getDisplayWorkspaceStatus = (
191191
} as const;
192192
case "stopping":
193193
return {
194-
type: "notice",
194+
type: "inactive",
195195
text: "Stopping",
196196
icon: <PillSpinner />,
197197
} as const;
198198
case "stopped":
199199
return {
200-
type: "notice",
200+
type: "inactive",
201201
text: "Stopped",
202202
icon: <StopIcon />,
203203
} as const;
@@ -215,13 +215,13 @@ export const getDisplayWorkspaceStatus = (
215215
} as const;
216216
case "canceling":
217217
return {
218-
type: "notice",
218+
type: "inactive",
219219
text: "Canceling",
220220
icon: <PillSpinner />,
221221
} as const;
222222
case "canceled":
223223
return {
224-
type: "notice",
224+
type: "inactive",
225225
text: "Canceled",
226226
icon: <ErrorIcon />,
227227
} as const;
@@ -233,7 +233,7 @@ export const getDisplayWorkspaceStatus = (
233233
} as const;
234234
case "pending":
235235
return {
236-
type: "info",
236+
type: "active",
237237
text: getPendingWorkspaceStatusText(provisionerJob),
238238
icon: <QueuedIcon />,
239239
} as const;

0 commit comments

Comments
 (0)