diff --git a/frontend/src/mixins/toaster.js b/frontend/src/mixins/toaster.js index d2b4ad6fb..109bf0d9a 100644 --- a/frontend/src/mixins/toaster.js +++ b/frontend/src/mixins/toaster.js @@ -4,6 +4,7 @@ export const toasters = { this.toast(message, { title: this.$t('success'), variant: 'success', + autoHideDelay: 5000, }) }, toastError(message) { @@ -17,12 +18,14 @@ export const toasters = { this.toast(message, { title: this.$t('navigation.info'), variant: 'warning', + autoHideDelay: 5000, }) }, - toastInfoNoHide(message, { noAutoHide: true }) { + toastInfoNoHide(message) { this.toast(message, { title: this.$t('navigation.info'), variant: 'warning', + noAutoHide: true, }) }, toast(message, options) {