Fix: Gewicht auf 2 Nachkommastellen (step 0.1 → 0.01)

This commit is contained in:
rene 2026-04-13 20:26:54 +02:00
parent 1a5f1f7ee2
commit d9f2e85263
2 changed files with 2 additions and 2 deletions

View file

@ -780,7 +780,7 @@ window.Page_health = (() => {
case 'gewicht': return `
<div class="form-group">
<label class="form-label">Gewicht (kg) *</label>
<input class="form-control" type="number" step="0.1" min="0" name="wert"
<input class="form-control" type="number" step="0.01" min="0" name="wert"
value="${entry?.wert ?? ''}" required>
</div>
`;