diff --git a/ui/src/widgets/ui-notification/UINotification.vue b/ui/src/widgets/ui-notification/UINotification.vue index f47ec9edb..04b4e9322 100644 --- a/ui/src/widgets/ui-notification/UINotification.vue +++ b/ui/src/widgets/ui-notification/UINotification.vue @@ -82,8 +82,10 @@ export default { msg }) - if (this.show) { - this.close('input_msg') + if ('clear_notification' in msg) { + if (msg.clear_notification && this.show) { + this.close('input_msg') + } } else { this.show = true if (this.props.displayTime > 0) {