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 ` case 'gewicht': return `
<div class="form-group"> <div class="form-group">
<label class="form-label">Gewicht (kg) *</label> <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> value="${entry?.wert ?? ''}" required>
</div> </div>
`; `;

View file

@ -3,7 +3,7 @@
Offline-Cache + Push Notifications Offline-Cache + Push Notifications
============================================================ */ ============================================================ */
const CACHE_VERSION = 'by-v10'; const CACHE_VERSION = 'by-v11';
const CACHE_STATIC = `${CACHE_VERSION}-static`; const CACHE_STATIC = `${CACHE_VERSION}-static`;
// Diese Dateien werden beim Install gecacht (App Shell) // Diese Dateien werden beim Install gecacht (App Shell)