From 879adfa6330d053c2ff746b31ddb7a98c7fbcf86 Mon Sep 17 00:00:00 2001 From: advplyr Date: Sun, 19 Jun 2022 18:25:59 -0500 Subject: [PATCH] Remove last bottom-center for toast --- client/layouts/default.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/layouts/default.vue b/client/layouts/default.vue index 27bb57f6..71c96e24 100644 --- a/client/layouts/default.vue +++ b/client/layouts/default.vue @@ -257,7 +257,7 @@ export default { data.toastId = existingScan.toastId this.$toast.update(existingScan.toastId, { content: `Scanning "${existingScan.name}"... ${data.progress.progress || 0}%`, options: { timeout: false } }, true) } else { - data.toastId = this.$toast(`Scanning "${data.name}"...`, { timeout: false, type: 'info', draggable: false, closeOnClick: false, closeButton: CloseButton, closeButtonClassName: 'cancel-scan-btn', showCloseButtonOnHover: false, position: 'bottom-center', onClose: () => this.onScanToastCancel(data.id) }) + data.toastId = this.$toast(`Scanning "${data.name}"...`, { timeout: false, type: 'info', draggable: false, closeOnClick: false, closeButton: CloseButton, closeButtonClassName: 'cancel-scan-btn', showCloseButtonOnHover: false, onClose: () => this.onScanToastCancel(data.id) }) } this.$store.commit('scanners/addUpdate', data)