[Fix] Notifications without actions are automatically hidden after 5 seconds.

This commit is contained in:
Sébastien 2020-05-03 21:32:36 +02:00
parent b834869fd3
commit e637faa53d
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ window.Backend = window.Backend || {};
actions = []; actions = [];
setTimeout(function () { setTimeout(function () {
$notification.fadeIn(); $notification.fadeOut();
}, 5000); }, 5000);
} }