This commit is contained in:
2022-03-16 00:12:35 +00:00
parent 7640892780
commit b59ca7a1fb

View File

@@ -1,7 +1,7 @@
<template> <template>
<div> <div>
<v-row justify="center"> <v-row justify="center">
<v-dialog v-model="seedDialog" persistent max-width="600px"> <v-dialog v-model="seedDialog" persistent max-width="800px">
<v-card> <v-card>
<v-card-title> <v-card-title>
<span class="text-h5 mb-2">{{ $ay.t("GenerateSampleData") }}</span> <span class="text-h5 mb-2">{{ $ay.t("GenerateSampleData") }}</span>
@@ -41,7 +41,7 @@
@input="fieldValueChanged('forceEmail')" @input="fieldValueChanged('forceEmail')"
></gz-email> ></gz-email>
<v-text-field <!-- <v-text-field
ref="appendPassword" ref="appendPassword"
v-model="obj.appendPassword" v-model="obj.appendPassword"
:append-outer-icon="reveal ? '$ayiEye' : '$ayiEyeSlash'" :append-outer-icon="reveal ? '$ayiEye' : '$ayiEyeSlash'"
@@ -50,7 +50,7 @@
:type="reveal ? 'text' : 'password'" :type="reveal ? 'text' : 'password'"
@input="fieldValueChanged('appendPassword')" @input="fieldValueChanged('appendPassword')"
@click:append-outer="reveal = !reveal" @click:append-outer="reveal = !reveal"
></v-text-field> ></v-text-field> -->
</v-card-text> </v-card-text>
<v-card-actions> <v-card-actions>
<v-spacer></v-spacer> <v-spacer></v-spacer>
@@ -203,6 +203,7 @@ export default {
); );
return; return;
} }
window.$gz.form.deleteAllErrorBoxErrors(vm);
try { try {
let dialogResult = await window.$gz.dialog.confirmGeneric( let dialogResult = await window.$gz.dialog.confirmGeneric(
"AdminEraseDatabaseWarning", "AdminEraseDatabaseWarning",
@@ -325,7 +326,7 @@ async function fetchTranslatedText() {
"JobFailed", "JobFailed",
"ErrorSecurityAdministratorOnlyMessage", "ErrorSecurityAdministratorOnlyMessage",
"ThankYouForEvaluating", "ThankYouForEvaluating",
"EvaluateAppendPassword", //"EvaluateAppendPassword",
"EvaluateForceEmail" "EvaluateForceEmail"
]); ]);
} }