Skip to content

Commit 0cd4842

Browse files
fix(site): fix pending indicator color (#11209)
1 parent df7ed18 commit 0cd4842

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

site/src/theme/dark/experimental.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ export default {
8787
info: {
8888
background: colors.blue[950],
8989
outline: colors.blue[400],
90-
fill: "#f00",
90+
fill: colors.blue[600],
9191
text: colors.blue[50],
9292
},
9393
success: {

site/src/utils/workspace.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ export const getDisplayWorkspaceStatus = (
233233
} as const;
234234
case "pending":
235235
return {
236-
type: undefined,
236+
type: "info",
237237
text: getPendingWorkspaceStatusText(provisionerJob),
238238
icon: <QueuedIcon />,
239239
} as const;

0 commit comments

Comments
 (0)