diff --git a/html/func.go b/html/func.go
index fa20d290..a0ddcda4 100644
--- a/html/func.go
+++ b/html/func.go
@@ -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":
diff --git a/scss/sync/upload-list.scss b/scss/sync/upload-list.scss
index d79ede43..a2bf53cf 100644
--- a/scss/sync/upload-list.scss
+++ b/scss/sync/upload-list.scss
@@ -21,6 +21,9 @@
.badge.committed {
background-color: $success;
}
+.badge.committing {
+ background-color: $success;
+}
.badge.discarded {
background-color: gray;
}