From ad12026229bec13da656a6b7882ecaa937e8800d Mon Sep 17 00:00:00 2001 From: Brandon A Date: Wed, 29 Oct 2025 21:02:38 +0000 Subject: [PATCH] move socket toast to top of the page --- client/layouts/default.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/layouts/default.vue b/client/layouts/default.vue index 75753b214..b69c92f4b 100644 --- a/client/layouts/default.vue +++ b/client/layouts/default.vue @@ -96,7 +96,7 @@ export default { timeout: timeout, type: type, closeButton: false, - position: 'bottom-center', + position: 'top-center', onClose: () => { this.socketConnectionToastId = null }, @@ -105,7 +105,7 @@ export default { } this.$toast.update(this.socketConnectionToastId, toastUpdateOptions, false) } else { - this.socketConnectionToastId = this.$toast[type](content, { position: 'bottom-center', timeout: timeout, closeButton: false, closeOnClick: timeout !== null }) + this.socketConnectionToastId = this.$toast[type](content, { position: 'top-center', timeout: timeout, closeButton: false, closeOnClick: timeout !== null }) } }, connect() {