Skip to content

Commit 9b94ab9

Browse files
committed
swapped single for double quotes
1 parent 8527b28 commit 9b94ab9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/fields/core/fieldInput.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ export default {
113113
case "range":
114114
this.debouncedFormatFunc = debounce((newValue, oldValue) => {
115115
this.formatNumberToModel(newValue, oldValue);
116-
}, parseInt(objGet(this.schema, 'debounceFormatTimeout', 1000)), {
116+
}, parseInt(objGet(this.schema, "debounceFormatTimeout", 1000)), {
117117
trailing: true,
118118
leading: false
119119
});
@@ -124,7 +124,7 @@ export default {
124124
// wait 1s before calling 'formatDatetimeToModel' to allow user to input data
125125
this.debouncedFormatFunc = debounce((newValue, oldValue) => {
126126
this.formatDatetimeToModel(newValue, oldValue);
127-
}, parseInt(objGet(this.schema, 'debounceFormatTimeout', 1000)), {
127+
}, parseInt(objGet(this.schema, "debounceFormatTimeout", 1000)), {
128128
trailing: true,
129129
leading: false
130130
});

0 commit comments

Comments
 (0)