From 1ccbf0f2dfc61e50c3db89b5f2bacaa35088aae9 Mon Sep 17 00:00:00 2001 From: sbgap Date: Wed, 15 May 2024 08:35:38 +0200 Subject: [PATCH] fix: add error in notification history list --- src/components/NotificationHistoryList.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/NotificationHistoryList.vue b/src/components/NotificationHistoryList.vue index 9747fbcb..91ee56fe 100644 --- a/src/components/NotificationHistoryList.vue +++ b/src/components/NotificationHistoryList.vue @@ -40,6 +40,7 @@ {{ props.item.channel }} {{ props.item.rule }} {{ props.item.alert }} + {{ props.item.error}} {{ props.item.confirmed }} {{ props.item.confirmed_time }} @@ -83,6 +84,7 @@ export default { { text: i18n.t('Channel'), value: 'channel' }, { text: i18n.t('NotificationRule'), value: 'rule' }, { text: i18n.t('Alert'), value: 'alert' }, + { text: i18n.t('Error'), value: 'error' }, { text: i18n.t('Confirmed'), value: 'confirmed' }, { text: i18n.t('ConfirmedTime'), value: 'confirmed_time' }, ],