A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
maximumNumberOfDays not working
-
I cant get maximumNumberOfDays working, tried several things like putting it in front of the config, in the config or after the config, days as number or string, nothing worked for me. My last config:
{ module: "calendar", header: "Abfallkalender", position: "top_left", config: { calendars: [ { url: "https://calendar.google.com/calendar/ical/...group.calendar.google.com/private-.../basic.ics", }, ], }, maximumNumberOfDays: '7', },
-
@JüNi no quotes around numbers
-
finally got it working with
{ module: "calendar", header: "Abfallkalender", position: "top_left", config: { calendars: [ { url: "https://calendar.google.com/calendar/ical/...group.calendar.google.com/private-.../basic.ics", maximumNumberOfDays: 14, maximumEntries: 5, }, ], }, },