We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a5f2e9 commit 36cf8c0Copy full SHA for 36cf8c0
1 file changed
adminforth/spa/src/components/ColumnValueInput.vue
@@ -101,11 +101,8 @@
101
:prefix="column.inputPrefix"
102
:suffix="column.inputSuffix"
103
:readonly="(column.editReadonly && source === 'edit') || readonly"
104
-
105
:modelValue="value !== null && value !== undefined ? parseFloat(value) : ''"
106
107
@update:modelValue="$emit('update:modelValue', $event)"
108
109
@blur="$emit('update:modelValue', value ? parseFloat(value).toString() : '')"
110
/>
111
<Input
@@ -212,6 +209,7 @@
212
209
213
210
const columnLoadingState = inject('columnLoadingState', {} as any);
214
211
const onSearchInput = inject('onSearchInput', {} as any);
+
215
const loadMoreOptions = inject('loadMoreOptions', (() => {}) as any);
216
217
const input = ref<HTMLInputElement | null>(null);
0 commit comments