fix: change build status colors (#11985)

This commit is contained in:
Kayla Washburn-Love
2024-02-01 18:02:40 -07:00
committed by GitHub
parent efac9ced3e
commit c6c71de353
+5 -5
View File
@@ -191,13 +191,13 @@ export const getDisplayWorkspaceStatus = (
} as const;
case "stopping":
return {
type: "notice",
type: "inactive",
text: "Stopping",
icon: <PillSpinner />,
} as const;
case "stopped":
return {
type: "notice",
type: "inactive",
text: "Stopped",
icon: <StopIcon />,
} as const;
@@ -215,13 +215,13 @@ export const getDisplayWorkspaceStatus = (
} as const;
case "canceling":
return {
type: "notice",
type: "inactive",
text: "Canceling",
icon: <PillSpinner />,
} as const;
case "canceled":
return {
type: "notice",
type: "inactive",
text: "Canceled",
icon: <ErrorIcon />,
} as const;
@@ -233,7 +233,7 @@ export const getDisplayWorkspaceStatus = (
} as const;
case "pending":
return {
type: "info",
type: "active",
text: getPendingWorkspaceStatusText(provisionerJob),
icon: <QueuedIcon />,
} as const;