From 19d1e2d456141fdb0c4cf586aa19fda2534616e8 Mon Sep 17 00:00:00 2001 From: vabene1111 Date: Wed, 15 Sep 2021 14:35:03 +0200 Subject: [PATCH] moved toast to bottom right to not obstruct modals --- vue/src/utils/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vue/src/utils/utils.js b/vue/src/utils/utils.js index 58e7dc087..133037f46 100644 --- a/vue/src/utils/utils.js +++ b/vue/src/utils/utils.js @@ -17,7 +17,7 @@ export function makeToast(title, message, variant = null) { toaster.$bvToast.toast(message, { title: title, variant: variant, - toaster: 'b-toaster-top-center', + toaster: 'b-toaster-bottom-right', solid: true }) }