From 8184a227ebb2fb11f61713186144125a8ed79960 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=BCneyt=20=C5=9Eent=C3=BCrk?= Date: Wed, 24 May 2023 17:10:23 +0300 Subject: [PATCH] fixed Notification auto close issue.. --- .../assets/js/components/NotificationPlugin/Notification.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/assets/js/components/NotificationPlugin/Notification.vue b/resources/assets/js/components/NotificationPlugin/Notification.vue index 583ddc040..a4317b606 100644 --- a/resources/assets/js/components/NotificationPlugin/Notification.vue +++ b/resources/assets/js/components/NotificationPlugin/Notification.vue @@ -250,7 +250,7 @@ this.elmHeight = this.$el.clientHeight; if (this.timeout) { - //setTimeout(this.close, this.timeout); + setTimeout(this.close, this.timeout); } }, };