Skip to content

Commit

Permalink
Treat ISA 18.2 UNACK and RTNUN as Open to allow ACKing and SHELVing a…
Browse files Browse the repository at this point in the history
…s well
  • Loading branch information
jjdmol committed Apr 17, 2022
1 parent e7575af commit 4f441f8
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 @@ -962,7 +962,7 @@ export default {
this.$store.dispatch('alerts/getNotes', this.id)
},
isOpen(status) {
return status == 'open' || status == 'NORM'
return status == 'open' || status == 'NORM' || status == 'UNACK' || status == 'RTNUN'
},
isWatched(tags) {
const tag = `watch:${this.username}`
Expand Down

0 comments on commit 4f441f8

Please sign in to comment.