This commit is contained in:
2020-11-20 00:07:31 +00:00
parent 0bed41974e
commit 65e8903077
2 changed files with 9 additions and 2 deletions

View File

@@ -39,6 +39,7 @@ todo: on all hide password option forms need one central button to hide password
todo: if authenticated and click reset link sb logged out before reset form opens
todo: suggest loginname be email address in docs
todo: test reset code expiry
todo: bugbug datetime control clear buttons don't trigger emit of empty date times

View File

@@ -1,5 +1,6 @@
<template>
<v-form ref="form">
<gz-error :errorBoxMessage="formState.errorBoxMessage"></gz-error>
<v-row v-if="formState.ready">
<v-col cols="12">
<v-text-field
@@ -79,7 +80,7 @@ export default {
confirmPassword: null,
passwordResetCode: null,
loginName: null,
translationId: 0 //1 //safety valve default to english
translationId: 1 //safety valve default to english
},
reveal: true,
@@ -166,7 +167,12 @@ async function fetchTranslatedText(vm) {
"UserLogin",
"ErrorRequiredFieldEmpty",
"ErrorNoMatch",
"Save"
"Save",
"ErrorAPI2000",
"ErrorAPI2001",
"ErrorAPI2004",
"ErrorAPI2201",
"ErrorAPI2203"
],
vm.obj.translationId
);