Skip to content

Commit 69a25cb

Browse files
committed
fix: remove readonly attribute from input in ColumnValueInput component
1 parent 5122ed9 commit 69a25cb

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

adminforth/spa/src/components/ColumnValueInput.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,6 @@
9999
:fullWidth="true"
100100
:prefix="column.inputPrefix"
101101
:suffix="column.inputSuffix"
102-
:readonly="(column.editReadonly && source === 'edit') || readonly"
103102
:modelValue="value !== null && value !== undefined ? parseFloat(value) : ''"
104103
@update:modelValue="$emit('update:modelValue', $event)"
105104
@blur="$emit('update:modelValue', value ? parseFloat(value).toString() : '')"

0 commit comments

Comments
 (0)