Fixing dashboard error when instance in progress.

This commit is contained in:
2026-07-27 16:20:46 -07:00
parent 85ad1c9311
commit 1c57b865b7

View File

@@ -2097,7 +2097,7 @@ chmod -R 777 /opt/keys")))
(define (instance-status->pill-type status)
(case (string->symbol status)
((queued) 'info)
((in-progress 'warning))
((in-progress) 'warning)
((complete) 'safe)
((failed) 'alert)
(else 'alert)))