Skip to content

Commit

Permalink
fix: add "unack" to open status check
Browse files Browse the repository at this point in the history
  • Loading branch information
sbgap committed Jul 2, 2024
1 parent fea9b37 commit 17431dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/AlertDetail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -977,7 +977,7 @@ export default {
return !this.$config.alarm_model.name.includes('ISA 18')
},
isOpen(status) {
return status == 'open' || status == 'NORM' || status == 'UNACK' || status == 'RTNUN'
return status == 'open' || status == 'NORM' || status == 'UNACK' || status == 'RTNUN' || status == 'unack'
},
isWatched(tags) {
const tag = `watch:${this.username}`
Expand Down

0 comments on commit 17431dd

Please sign in to comment.