From c6c71de35389d58d30b283f8c9504490152f1fd8 Mon Sep 17 00:00:00 2001 From: Kayla Washburn-Love Date: Thu, 1 Feb 2024 18:02:40 -0700 Subject: [PATCH] fix: change build status colors (#11985) --- 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 f7e98772e1..35a57c8ad6 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;