Skip to content

Commit dc9c88f

Browse files
committed
Merge branch 'feature/345-debounced-validate-fix' into feature/vue-2.5.9
* feature/345-debounced-validate-fix: removed console.log and fixed quotes
2 parents b017ffd + 025b541 commit dc9c88f

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/fields/abstractField.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ export default {
7979

8080
methods: {
8181
validate(calledParent) {
82-
console.log('validating', performance.now());
8382
this.clearValidationErrors();
8483

8584
if (this.schema.validator && this.schema.readonly !== true && this.disabled !== true) {
@@ -131,10 +130,8 @@ export default {
131130
},
132131
debouncedValidate() {
133132
if(!isFunction(this.debouncedValidateFunc)) {
134-
console.log('debouncedValidate', 'config', objGet(this, '$parent.optionsvalidateDebounceTime', 500));
135-
this.debouncedValidateFunc = debounce(this.validate.bind(this), objGet(this, '$parent.options.validateDebounceTime', 500));
133+
this.debouncedValidateFunc = debounce(this.validate.bind(this), objGet(this, "$parent.options.validateDebounceTime", 500));
136134
}
137-
console.log('debouncedValidate', performance.now());
138135
this.debouncedValidateFunc();
139136
},
140137
clearValidationErrors() {

0 commit comments

Comments
 (0)