Fix display of 'committing' files

This commit is contained in:
Eli Ribble 2026-03-19 05:46:06 +00:00
parent dad867a356
commit 0cc0b57e33
No known key found for this signature in database
2 changed files with 6 additions and 1 deletions

View file

@ -62,7 +62,9 @@ func bigNumber(n int) string {
func displayUploadStatus(s string) string { func displayUploadStatus(s string) string {
switch s { switch s {
case "committed": case "committed":
return "committed" return "Complete"
case "committing":
return "Committing"
case "discarded": case "discarded":
return "Discarded" return "Discarded"
case "error": case "error":

View file

@ -21,6 +21,9 @@
.badge.committed { .badge.committed {
background-color: $success; background-color: $success;
} }
.badge.committing {
background-color: $success;
}
.badge.discarded { .badge.discarded {
background-color: gray; background-color: gray;
} }