fix: replace type=time with text inputs to force 24h HH:MM format (no AM/PM)
Some checks failed
Build & Push Docker / build (push) Has been cancelled

This commit is contained in:
2026-02-20 18:22:48 +01:00
parent 624157ef57
commit f3e2ae2cda
3 changed files with 57 additions and 2 deletions

View File

@@ -191,11 +191,11 @@
<div class="form-row">
<div class="form-group">
<label>Začátek</label>
<input type="time" id="modalBlockStart" step="900">
<input type="text" id="modalBlockStart" placeholder="HH:MM" maxlength="5" class="time-input" autocomplete="off">
</div>
<div class="form-group">
<label>Konec</label>
<input type="time" id="modalBlockEnd" step="900">
<input type="text" id="modalBlockEnd" placeholder="HH:MM" maxlength="5" class="time-input" autocomplete="off">
</div>
</div>
<div class="form-group">