We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be96a70 commit 165d448Copy full SHA for 165d448
adminforth/spa/src/components/ColumnValueInput.vue
@@ -48,6 +48,8 @@
48
step="1"
49
class="w-40"
50
placeholder="0"
51
+ :min="![undefined, null].includes(column.minValue) ? column.minValue : ''"
52
+ :max="![undefined, null].includes(column.maxValue) ? column.maxValue : ''"
53
:prefix="column.inputPrefix"
54
:suffix="column.inputSuffix"
55
:readonly="column.editReadonly && source === 'edit'"
@@ -70,6 +72,8 @@
70
72
step="0.1"
71
73
74
placeholder="0.0"
75
76
77
78
79
:modelValue="value"
0 commit comments