fix: add inputmode to number inputs across admin modals to enforce numeric keyboard on mobile

This commit is contained in:
2026-05-29 18:20:30 +01:00
parent c21a59d61d
commit 20bd3e3310
3 changed files with 8 additions and 3 deletions
@@ -530,6 +530,7 @@
<Input
id="service-price"
type="number"
inputmode="decimal"
step="0.01"
min="0"
placeholder="0.00"
@@ -548,6 +549,7 @@
<Input
id="service-duration"
type="number"
inputmode="numeric"
min="1"
step="1"
placeholder="60"
@@ -567,6 +569,7 @@
<Input
id="minimum-age"
type="number"
inputmode="numeric"
min="0"
max="100"
step="1"