From 9570cc0f2448f6f478debf31420b6f6d2e2e1ffb Mon Sep 17 00:00:00 2001 From: Avii Date: Sun, 9 Aug 2026 22:14:27 +0200 Subject: [PATCH] 1786306467 --- dashboard/src/ui.rs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/dashboard/src/ui.rs b/dashboard/src/ui.rs index f33fe68..7b9500d 100644 --- a/dashboard/src/ui.rs +++ b/dashboard/src/ui.rs @@ -105,11 +105,7 @@ pub fn apply_calendars(app: &Weak, entities: Vec) { let entities: Vec = entities.iter().map(Into::into).collect::>(); if let Some(event) = &entities.first() { - app.set_next_event_date(slint::format!( - "NEXT / {} / {}", - event.date.to_uppercase(), - event.calendar.to_uppercase() - )); + app.set_next_event_date(slint::format!("NEXT / {}", event.date.to_uppercase(),)); app.set_next_event_time(event.time.clone()); app.set_next_event_summary(event.summary.clone()); } else {