From 5362cd162eeee49e41fe84540bd45203ea68dcab Mon Sep 17 00:00:00 2001 From: joan Date: Fri, 11 Mar 2022 13:02:47 +0100 Subject: [PATCH] Translation key updated --- src/i18n/en/index.ts | 3 --- src/pages/Login/Login.vue | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/src/i18n/en/index.ts b/src/i18n/en/index.ts index ef07c6794..54b480a87 100644 --- a/src/i18n/en/index.ts +++ b/src/i18n/en/index.ts @@ -1,6 +1,3 @@ -// This is just an example, -// so you can safely delete all default props below - export default { 'globals': { 'lang': { diff --git a/src/pages/Login/Login.vue b/src/pages/Login/Login.vue index 533cf8004..9aa836b53 100644 --- a/src/pages/Login/Login.vue +++ b/src/pages/Login/Login.vue @@ -117,7 +117,7 @@ async function onSubmit(): Promise { const errorCode = error.response && error.response.status; if (errorCode === 401) { quasar.notify({ - message: t('login.loginFailed'), + message: t('login.loginError'), type: 'negative', }); }