From 17832af991524c3b019e66f0eab793c747a3c3ac Mon Sep 17 00:00:00 2001 From: McKayla Washburn Date: Thu, 1 Feb 2024 20:49:39 +0000 Subject: [PATCH] fix: change build status colors --- site/src/utils/workspace.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/site/src/utils/workspace.tsx b/site/src/utils/workspace.tsx index f7e98772e1344..35a57c8ad680b 100644 --- a/site/src/utils/workspace.tsx +++ b/site/src/utils/workspace.tsx @@ -191,13 +191,13 @@ export const getDisplayWorkspaceStatus = ( } as const; case "stopping": return { - type: "notice", + type: "inactive", text: "Stopping", icon: , } as const; case "stopped": return { - type: "notice", + type: "inactive", text: "Stopped", icon: , } as const; @@ -215,13 +215,13 @@ export const getDisplayWorkspaceStatus = ( } as const; case "canceling": return { - type: "notice", + type: "inactive", text: "Canceling", icon: , } as const; case "canceled": return { - type: "notice", + type: "inactive", text: "Canceled", icon: , } as const; @@ -233,7 +233,7 @@ export const getDisplayWorkspaceStatus = ( } as const; case "pending": return { - type: "info", + type: "active", text: getPendingWorkspaceStatusText(provisionerJob), icon: , } as const;