From b7d0a0d14d46090bd817274b2af28e8a45c3f3e1 Mon Sep 17 00:00:00 2001 From: Stefan Koelle Date: Sun, 2 Aug 2026 21:48:44 +0200 Subject: [PATCH] all day without - --- include/date_utils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/date_utils.h b/include/date_utils.h index abae867..5085781 100644 --- a/include/date_utils.h +++ b/include/date_utils.h @@ -74,7 +74,7 @@ inline String formatDateDE(const String &iso) { // Time-only column text, e.g. "14:00". Returns "-" for all-day events so the // table row keeps a consistent column structure. inline String formatTimeDE(const String &iso, bool allDay) { - if (allDay) return "-"; + if (allDay) return ""; ParsedDateTime p = parseIso(iso); if (!p.valid) return ""; char buf[8];