Fix display of 'committing' files
This commit is contained in:
parent
dad867a356
commit
0cc0b57e33
2 changed files with 6 additions and 1 deletions
|
|
@ -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":
|
||||
|
|
|
|||
|
|
@ -21,6 +21,9 @@
|
|||
.badge.committed {
|
||||
background-color: $success;
|
||||
}
|
||||
.badge.committing {
|
||||
background-color: $success;
|
||||
}
|
||||
.badge.discarded {
|
||||
background-color: gray;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue