v1.7.5: UI-Verbesserungen Listenansicht und Zeiteingabe

- Listview: Toolbar-Rahmen #407BFF, Fokus 2px ring-inset #235CC8
- Listview: Pfeil-Buttons Monatsauswahl in #85B7D7
- Listview: Klimawerte werden bei allen-0 ausgeblendet
- Zeiteingabe: nur Stunden + Tab setzt Minuten automatisch auf :00

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-14 22:21:05 +02:00
parent 9e2f430d4a
commit b588a70ecd
4 changed files with 12 additions and 11 deletions
+3 -2
View File
@@ -53,8 +53,9 @@ export default function TimeInput({ value, onChange, className = '', clearOnFocu
setError(false);
return;
}
if (isValid(local)) {
const norm = normalize(local);
const expanded = /^\d{1,2}:?$/.test(local) ? local.replace(/:$/, '') + ':00' : local;
if (isValid(expanded)) {
const norm = normalize(expanded);
setLocal(norm);
setError(false);
onChange(norm);