Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: change build status colors
  • Loading branch information
aslilac committed Feb 1, 2024
commit 17832af991524c3b019e66f0eab793c747a3c3ac
10 changes: 5 additions & 5 deletions site/src/utils/workspace.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
Expand All @@ -233,7 +233,7 @@ export const getDisplayWorkspaceStatus = (
} as const;
case "pending":
return {
type: "info",
type: "active",
text: getPendingWorkspaceStatusText(provisionerJob),
icon: <QueuedIcon />,
} as const;
Expand Down