MagicMirror² v2.24.0 is available! For more information about this release, check out this topic.
UNSOLVED config js help
-
Can someone take a look at this and tell me what I’m missing. I cannot find it for the life of me.
code_text
position: "top_left", }, { module: 'calendar', header: 'Drew's Calendar', position: 'top_left', config: { maximumEntries: '5', fade: false, calendars: [ { symbol: 'calendar-o ', url: "https://calendar.google.com/", } ] } }, { module: 'calendar', header: 'Mackenzie's Calendar', position: 'top_left', config: { maximumEntries: '5', fade: false, calendars: [ { symbol: 'calendar-o ', url: "http", } ] } }, { module: "helloworld", position: "top_bar", config: { text: "Welcome" }
-
@dcarls91 if u r going to use single quotes, you can’t include them in the string.
‘Drew’s Calendar’
Use double quotes
“Drew’s Calendar”