We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a46fe31 commit 2724809Copy full SHA for 2724809
src/fields/abstractField.js
@@ -62,7 +62,6 @@ export default {
62
this.clearValidationErrors();
63
64
if (this.schema.validator && this.schema.readonly !== true && this.disabled !== true) {
65
-
66
let validators = [];
67
if (!isArray(this.schema.validator)) {
68
validators.push(convertValidator(this.schema.validator).bind(this));
src/fields/core/fieldInput.vue
@@ -133,6 +133,7 @@ export default {
133
break;
134
}
135
},
136
+
137
created () {
138
if(this.schema.inputType == "file")
139
console.warn("The 'file' type in input field is deprecated. Use 'file' field instead.");
0 commit comments