diff --git a/website/client/components/snackbars/notification.vue b/website/client/components/snackbars/notification.vue index 4aa55924e9..3732be3ae3 100644 --- a/website/client/components/snackbars/notification.vue +++ b/website/client/components/snackbars/notification.vue @@ -126,8 +126,8 @@ export default { // @TODO the notifications always close even if timeout is false let timeout = this.notification.hasOwnProperty('timeout') ? this.notification.timeout : true; if (timeout) { - let delay = this.notification.delay || 500; - delay += this.$store.state.notificationStore.length * 500; + let delay = this.notification.delay || 1500; + delay += this.$store.state.notificationStore.length * 1000; setTimeout(() => { this.show = false; }, delay);