This commit is contained in:
2019-11-26 22:08:54 +00:00
parent 9c0f69062c
commit 5ed8368ea6
2 changed files with 4 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
/* Xeslint-disable */
/* XXeslint-disable */
///////////////////////////////
// gzform
//
@@ -357,7 +357,8 @@ export default {
return false;
}
if (!templateItem.required) {
//templateItem.required is a string value, not a boolean value
if (templateItem.required !== "true") {
return false;
}

View File

@@ -7,7 +7,7 @@
<v-text-field
v-on="on"
v-model="formatTime"
label
v-bind:label="label"
prepend-icon="fa-clock"
@click:prepend="dlgtime = true"
readonly