Skip to content

Commit 8c47cf9

Browse files
committed
remove unused comment
1 parent c61ab6b commit 8c47cf9

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/fields/abstractField.js

-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ export default {
2525
},
2626

2727
set(newValue) {
28-
// console.log("Model value changed!", newValue);
2928
if (isFunction(this.formatValueToModel))
3029
newValue = this.formatValueToModel(newValue);
3130

@@ -43,7 +42,6 @@ export default {
4342

4443
watch: {
4544
value(newVal, oldVal) {
46-
// console.log("Changed", newVal, oldVal);
4745
if (isFunction(this.schema.onChanged)) {
4846
this.schema.onChanged(this.model, newVal, oldVal, this.schema);
4947
}

0 commit comments

Comments
 (0)