remove code

This commit is contained in:
ogerly 2023-02-09 16:49:19 +01:00
parent 77c72b00d9
commit b7740e5351

View File

@ -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) {