Skip to content

Commit 2468597

Browse files
fix(signature-stamp): align :min of dimension fields with backend minimum
Change :min from 0.1 to 1 on both signatureWidth and signatureHeight NcTextField inputs so the UI prevents values the API will reject. Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
1 parent 650c5ed commit 2468597

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/views/Settings/SignatureStamp.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@
136136
:label="t('libresign', 'Default signature width')"
137137
:placeholder="t('libresign', 'Default signature width')"
138138
type="number"
139-
:min="0.1"
139+
:min="1"
140140
:max="800"
141141
:step="0.01"
142142
:spellcheck="false"
@@ -157,7 +157,7 @@
157157
:label="t('libresign', 'Default signature height')"
158158
:placeholder="t('libresign', 'Default signature height')"
159159
type="number"
160-
:min="0.1"
160+
:min="1"
161161
:max="800"
162162
:step="0.01"
163163
:spellcheck="false"

0 commit comments

Comments
 (0)