From b4a59e11b0d13361a01e683b6b1b0c63fd33da1b Mon Sep 17 00:00:00 2001 From: Mark Meyer Date: Wed, 9 Aug 2023 08:42:46 -0800 Subject: [PATCH] small edit to exit alert message requested by program --- training-front-end/src/components/SessionManager.vue | 2 +- training-front-end/src/stores/session_manager.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/training-front-end/src/components/SessionManager.vue b/training-front-end/src/components/SessionManager.vue index 913ae3b8..dde48b6d 100644 --- a/training-front-end/src/components/SessionManager.vue +++ b/training-front-end/src/components/SessionManager.vue @@ -12,7 +12,7 @@ const exit_redirect = () => { setMessage( - 'You have successfully exited your session. You can start a new session to take another training or access your certificates.', + 'You have successfully exited your session. You can start a new session to take another training or to access your certificates.', 'success' ) window.location.replace(`${import.meta.env.BASE_URL}exit`) diff --git a/training-front-end/src/stores/session_manager.js b/training-front-end/src/stores/session_manager.js index e08b7bc6..d1726144 100644 --- a/training-front-end/src/stores/session_manager.js +++ b/training-front-end/src/stores/session_manager.js @@ -35,7 +35,7 @@ export async function exit() { // without an additional warning window.removeEventListener('beforeunload', exit_warning) setMessage( - 'You have successfully exited your session. You can start a new session to take another training or access your certificates.', + 'You have successfully exited your session. You can start a new session to take another training or to access your certificates.', 'success' ) window.location.replace(`${import.meta.env.BASE_URL}exit`)