Skip to content

Commit 025b541

Browse files
committed
removed console.log and fixed quotes
1 parent c86d7dc commit 025b541

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/fields/abstractField.js

+1-4
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)