diff --git a/frontend/src/mixins/toaster.js b/frontend/src/mixins/toaster.js index 109bf0d9a..6ed73b697 100644 --- a/frontend/src/mixins/toaster.js +++ b/frontend/src/mixins/toaster.js @@ -4,21 +4,18 @@ export const toasters = { this.toast(message, { title: this.$t('success'), variant: 'success', - autoHideDelay: 5000, }) }, toastError(message) { this.toast(message, { title: this.$t('error.error'), variant: 'danger', - autoHideDelay: 5000, }) }, toastInfo(message) { this.toast(message, { title: this.$t('navigation.info'), variant: 'warning', - autoHideDelay: 5000, }) }, toastInfoNoHide(message) { @@ -32,6 +29,7 @@ export const toasters = { if (message.replace) message = message.replace(/^GraphQL error: /, '') this.$root.$bvToast.toast(message, { appendToast: true, + autoHideDelay: 5000, solid: true, toaster: 'b-toaster-top-right', headerClass: 'gdd-toaster-title',