Skip to content

Commit

Permalink
fixed unknown color
Browse files Browse the repository at this point in the history
  • Loading branch information
grolu committed Aug 5, 2024
1 parent f22dc75 commit 368408f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/GShootStatus.vue
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ export default {
},
color () {
if (this.isAborted || this.isStaleShoot) {
return 'grey'
return 'unknown'
} else if (this.isError) {
return 'error'
} else {
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/GStatusTag.vue
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ export default {
},
color () {
if (this.isUnknown || this.staleShoot) {
return 'grey'
return 'unknown'
}
if (this.isError) {
return 'error'
Expand Down

0 comments on commit 368408f

Please sign in to comment.