fix: deployment color

This commit is contained in:
Arman
2025-03-13 16:05:11 +01:00
parent c9bd00212f
commit 132ee0111f
+3 -1
View File
@@ -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';
}
}