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];