Skip to content

Commit 26d0619

Browse files
committed
feat: revert
1 parent 9b0880d commit 26d0619

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

adminforth/spa/src/components/ColumnValueInput.vue

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,11 @@
9494
type="number"
9595
step="any"
9696
class="w-40"
97-
:modelValue="value ? parseFloat(value) : ''"
97+
placeholder="0.0"
98+
:fullWidth="true"
99+
:prefix="column.inputPrefix"
100+
:suffix="column.inputSuffix"
101+
:modelValue="String(value)"
98102
@update:modelValue="(val: any) => $emit('update:modelValue', val)"
99103
@blur="$emit('update:modelValue', value ? parseFloat(value).toString() : '')"
100104
/>

0 commit comments

Comments
 (0)