From d13314eb985b7305b158740bff7b0dcc02126abf Mon Sep 17 00:00:00 2001 From: mbecker20 Date: Thu, 26 Feb 2026 14:25:31 -0800 Subject: [PATCH] stack stopped and deployment exited warning instead of critical --- ui/src/lib/color.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ui/src/lib/color.ts b/ui/src/lib/color.ts index c61a4d10d..7d1fc3ad6 100644 --- a/ui/src/lib/color.ts +++ b/ui/src/lib/color.ts @@ -168,7 +168,7 @@ export const stackStateIntention = (state?: Types.StackState) => { case Types.StackState.Paused: return "Warning"; case Types.StackState.Stopped: - return "Critical"; + return "Warning"; case Types.StackState.Restarting: return "Critical"; case Types.StackState.Down: @@ -194,6 +194,8 @@ export const deploymentStateIntention: ( return "Neutral"; case Types.DeploymentState.Paused: return "Warning"; + case Types.DeploymentState.Exited: + return "Warning"; case Types.DeploymentState.Unknown: return "Unknown"; default: