We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b0880d commit 26d0619Copy full SHA for 26d0619
1 file changed
adminforth/spa/src/components/ColumnValueInput.vue
@@ -94,7 +94,11 @@
94
type="number"
95
step="any"
96
class="w-40"
97
- :modelValue="value ? parseFloat(value) : ''"
+ placeholder="0.0"
98
+ :fullWidth="true"
99
+ :prefix="column.inputPrefix"
100
+ :suffix="column.inputSuffix"
101
+ :modelValue="String(value)"
102
@update:modelValue="(val: any) => $emit('update:modelValue', val)"
103
@blur="$emit('update:modelValue', value ? parseFloat(value).toString() : '')"
104
/>
0 commit comments