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: if authenticated and click reset link sb logged out before reset form opens
todo: suggest loginname be email address in docs 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 todo: bugbug datetime control clear buttons don't trigger emit of empty date times

View File

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