From 132ee0111f2a248d7e862a85db87cec6be011925 Mon Sep 17 00:00:00 2001 From: Arman Date: Thu, 13 Mar 2025 16:05:11 +0100 Subject: [PATCH] fix: deployment color --- src/lib/stores/git.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/lib/stores/git.ts b/src/lib/stores/git.ts index c56941d3e..f8e0d1387 100644 --- a/src/lib/stores/git.ts +++ b/src/lib/stores/git.ts @@ -31,8 +31,10 @@ export function deploymentStatusConverter(status: string) { case 'queued': return 'waiting'; case 'cancelled': - return 'failed'; + return 'processing'; case 'failed': return 'failed'; + default: + return 'processing'; } }