From e637faa53d7d5e585eb4210f6ee75405ab1afafb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=CC=81bastien?= Date: Sun, 3 May 2020 21:32:36 +0200 Subject: [PATCH] [Fix] Notifications without actions are automatically hidden after 5 seconds. --- assets/js/backend.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/js/backend.js b/assets/js/backend.js index ae770fea..144dffe3 100644 --- a/assets/js/backend.js +++ b/assets/js/backend.js @@ -114,7 +114,7 @@ window.Backend = window.Backend || {}; actions = []; setTimeout(function () { - $notification.fadeIn(); + $notification.fadeOut(); }, 5000); }