diff --git a/src/components/AlertActions.vue b/src/components/AlertActions.vue index 8b126942..c016dae1 100644 --- a/src/components/AlertActions.vue +++ b/src/components/AlertActions.vue @@ -193,7 +193,7 @@ export default { return this.$store.getters.getPreference('isDark') }, isOpen(status) { - return this.status == 'open' || this.status == 'NORM' + return this.status == 'open' || this.status == 'NORM' || this.status == 'UNACK' || this.status == 'RTNUN' }, isAcked() { return this.status == 'ack' || this.status == 'ACKED' diff --git a/src/components/AlertDetail.vue b/src/components/AlertDetail.vue index b9116f99..521f3035 100644 --- a/src/components/AlertDetail.vue +++ b/src/components/AlertDetail.vue @@ -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}` diff --git a/src/components/AlertList.vue b/src/components/AlertList.vue index 393b8723..282b94a9 100644 --- a/src/components/AlertList.vue +++ b/src/components/AlertList.vue @@ -646,7 +646,7 @@ export default { } }, isOpen(status) { - return status == 'open' || status == 'NORM' + return status == 'open' || status == 'NORM' || status == 'UNACK' || status == 'RTNUN' }, isWatched(tags) { return tags ? tags.indexOf(`watch:${this.username}`) > -1 : false