This commit is contained in:
@@ -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
|
||||||
|
|||||||
@@ -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
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user