From 95e6919dcf6d0e4ad35f326fa36efeb39ca41855 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sun, 23 Feb 2025 19:15:33 +0200 Subject: [PATCH] chore(calendar/view): remove unnecessary comment --- src/public/app/widgets/view_widgets/calendar_view.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/public/app/widgets/view_widgets/calendar_view.ts b/src/public/app/widgets/view_widgets/calendar_view.ts index 0421fe4db..e2987728b 100644 --- a/src/public/app/widgets/view_widgets/calendar_view.ts +++ b/src/public/app/widgets/view_widgets/calendar_view.ts @@ -320,8 +320,6 @@ export default class CalendarView extends ViewMode { const titles = await CalendarView.#parseCustomTitle(customTitle, note); const color = note.getLabelValue("calendar:color") ?? note.getLabelValue("color"); const events: EventInput[] = []; - // the user can specify one or multiple attributes to be promoted onto the calendar view by setting `#calendar:promotedAttributes` at the note level - // their values will then be rentered into the event title and appear as "[eventIcon] $eventTitle [#promotedAttributeX=valueX] [#promotedAttributeY=valueY]" const calendarPromotedAttributes = note.getLabelValue("calendar:promotedAttributes"); let promotedAttributesData = null;