Skip to content

Commit

Permalink
fix: bug introduced when fixing hidden event text
Browse files Browse the repository at this point in the history
  • Loading branch information
marksie1988 committed Jan 12, 2024
1 parent 0cf025d commit ee8d280
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/event.func.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ export async function getCalendarMode(config: atomicCardConfig, hass, selectedMo

// link events to the specific day of the month
month.map((day: CalendarDay) => {
events.map((event: EventClass) => {
events[0].map((event: EventClass) => {
if (event.startDateTime.isSame(day.date, 'day')) {
day.allEvents.push(event);
}
Expand Down

0 comments on commit ee8d280

Please sign in to comment.