Skip to content

Commit 1f4ac82

Browse files
committed
add changelog for #2868
1 parent 0baf58f commit 1f4ac82

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ Special thanks to the following contributors: @10bias, @CFenner, @JHWelch, @k1rd
6161
- Don't adjust startDate for full day events if endDate is in the past.
6262
- Fix windspeed conversion error in openweathermap provider. (#2812)
6363
- Fix conflicting parms turning off showEnd for full day events. (#2629)
64+
- Fix regression, calendar.maximumEntries not used to filter calendar level entries (#2868)
6465

6566
## [2.18.0] - 2022-01-01
6667

modules/default/calendar/calendarutils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ const CalendarUtils = {
498498
return a.startDate - b.startDate;
499499
});
500500

501-
let maxEvents=newEvents.slice(0,config.maximumEntries)
501+
let maxEvents = newEvents.slice(0, config.maximumEntries);
502502
return maxEvents;
503503
},
504504

0 commit comments

Comments
 (0)