add changelog for #2868

This commit is contained in:
Sam Detweiler 2022-06-28 08:05:13 -05:00
parent 0baf58f3fd
commit 1f4ac82495
2 changed files with 2 additions and 1 deletions

View File

@ -61,6 +61,7 @@ Special thanks to the following contributors: @10bias, @CFenner, @JHWelch, @k1rd
- Don't adjust startDate for full day events if endDate is in the past.
- Fix windspeed conversion error in openweathermap provider. (#2812)
- Fix conflicting parms turning off showEnd for full day events. (#2629)
- Fix regression, calendar.maximumEntries not used to filter calendar level entries (#2868)
## [2.18.0] - 2022-01-01

View File

@ -498,7 +498,7 @@ const CalendarUtils = {
return a.startDate - b.startDate;
});
let maxEvents=newEvents.slice(0,config.maximumEntries)
let maxEvents = newEvents.slice(0, config.maximumEntries);
return maxEvents;
},