mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-28 20:22:53 +00:00
add changelog for #2868
This commit is contained in:
parent
0baf58f3fd
commit
1f4ac82495
@ -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.
|
- Don't adjust startDate for full day events if endDate is in the past.
|
||||||
- Fix windspeed conversion error in openweathermap provider. (#2812)
|
- Fix windspeed conversion error in openweathermap provider. (#2812)
|
||||||
- Fix conflicting parms turning off showEnd for full day events. (#2629)
|
- 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
|
## [2.18.0] - 2022-01-01
|
||||||
|
|
||||||
|
@ -498,7 +498,7 @@ const CalendarUtils = {
|
|||||||
return a.startDate - b.startDate;
|
return a.startDate - b.startDate;
|
||||||
});
|
});
|
||||||
|
|
||||||
let maxEvents=newEvents.slice(0,config.maximumEntries)
|
let maxEvents = newEvents.slice(0, config.maximumEntries);
|
||||||
return maxEvents;
|
return maxEvents;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user