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 {
switch s {
case "committed":
return "committed"
return "Complete"
case "committing":
return "Committing"
case "discarded":
return "Discarded"
case "error":

View file

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