Skip to content

Commit

Permalink
Merge pull request #24 from gapitio/alarm_model
Browse files Browse the repository at this point in the history
fix: add "unack" to open status check
  • Loading branch information
sbgap authored Jul 2, 2024
2 parents fea9b37 + 17431dd commit 7bc26be
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 7bc26be

Please sign in to comment.