From e99c37a36a8f091cac001af130937bcb267d55a5 Mon Sep 17 00:00:00 2001 From: Matt N Date: Tue, 14 Apr 2020 04:27:03 -0700 Subject: [PATCH] Don't immediately remove notifications from notification trays (#4773) Let the notifications go into browser/OS notification trays so users can click on them from there if they miss the initial notification. Modern browsers generally use OS notifications so the user is in control of the notification at the OS level. --- client/app/services/notifications.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/client/app/services/notifications.js b/client/app/services/notifications.js index 99d7cc84ed..6999471e7f 100644 --- a/client/app/services/notifications.js +++ b/client/app/services/notifications.js @@ -33,9 +33,6 @@ function showNotification(title, content) { body: content, icon: redashIconUrl, }); - setTimeout(() => { - notification.close(); - }, 3000); notification.onclick = function onClick() { window.focus(); this.close();