From 6f0b6f094d9fdeffc5de181c186a81c21bd5a6cb Mon Sep 17 00:00:00 2001 From: ogerly Date: Thu, 27 Apr 2023 11:52:32 +0200 Subject: [PATCH] refactor auto logout messages autohide time 5000 --- frontend/src/components/SessionLogoutTimeout.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/SessionLogoutTimeout.vue b/frontend/src/components/SessionLogoutTimeout.vue index 7a11d1d83..2b776fbdd 100644 --- a/frontend/src/components/SessionLogoutTimeout.vue +++ b/frontend/src/components/SessionLogoutTimeout.vue @@ -67,7 +67,7 @@ export default { } if (this.tokenExpiresInSeconds === 0) { this.$timer.stop('tokenExpires') - this.toastInfoNoHide(this.$t('session.automaticallyLoggedOut')) + this.toastInfo(this.$t('session.automaticallyLoggedOut')) this.$emit('logout') } }, @@ -85,7 +85,7 @@ export default { }) .catch(() => { this.$timer.stop('tokenExpires') - this.toastInfoNoHide(this.$t('session.automaticallyLoggedOut')) + this.toastInfo(this.$t('session.automaticallyLoggedOut')) this.$emit('logout') }) },