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 {