Skip to content

Commit 2724809

Browse files
committed
requested by @icebob
1 parent a46fe31 commit 2724809

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

src/fields/abstractField.js

-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ export default {
6262
this.clearValidationErrors();
6363

6464
if (this.schema.validator && this.schema.readonly !== true && this.disabled !== true) {
65-
6665
let validators = [];
6766
if (!isArray(this.schema.validator)) {
6867
validators.push(convertValidator(this.schema.validator).bind(this));

src/fields/core/fieldInput.vue

+1
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ export default {
133133
break;
134134
}
135135
},
136+
136137
created () {
137138
if(this.schema.inputType == "file")
138139
console.warn("The 'file' type in input field is deprecated. Use 'file' field instead.");

0 commit comments

Comments
 (0)