Read the statement by Michael Teeuw here.
MMM-CalendarExt3 no Entries since last update
-
@Andreas1956
OK. Look inside deeper.- Execute MM as dev mode.
- If you are using
pm2
, stop it first. - In your MM directory, run this script.
npm run start:dev
-
Or alternatively, After MM’s normal execution, Ctrl + Shift + i (Or Alt+F12, it could be different by your system environment), Anyway, open the
dev-console
on the browser/client with hotkeys. -
It will open this kind of dev-console as a side panel.
- At the panel, you can see
Elements
orConsole
tab. Go toElements
Tab.
- There would also be
cursor
icon (left side of theElements
Tab mark); select it and click to any event element
-
Now, the side
Elements
tab will focus on the HTML code for the element you clicked.
-
navigate into the
title
element
- Check whether proper text exists there.
- And See the
Styles
tab.(Somewhere in the side panel. Usually below theElements
window)
You can see there are
--calendarColor
andoppositeColor
attributes there. And there is no other overridden colors.- Or you can check this in
Computed
tab.
There are some
calculated
results for the style.Could you find any suspicious things on watching your case?
-
@MMRIZE
Thanks, a lot of Information event =true on 19th but nothing like title
I will check for warnings or errors tomorrow
-
@Andreas1956
You are clicking the day cell, not event. -
@MMRIZE
I would, but there is no event cell under the day … i think this is the Problem -
@Andreas1956
there is an event cell that spans into the 19th (pink arrow) -
@sdetweil
Yes, but this Screenshot is shrinkt, cause of the debug window on the right side.
And until last update begin of the week, everything was ok. I didnd change anything on my config files since months. -
@Andreas1956 yes, but its the event bubbles that are empty. and he wanted to see that
-
@MMRIZE said in MMM-CalendarExt3 no Entries since last update:
@Andreas1956
You are clicking the day cell, not event.ok, found the event cells now.
think the problem comes from the font-awesome symbols. i removed the symbol property from all 5 calendar entries, then everything was ok but no symbols (only the standard calendar symbol)
then i added symbol:[“trash”] to the calendar garbage again - title disappeared again. -
@Andreas1956
ok, got it. i removed the square bracket from the symbol property like - symbol: “trash” ans everything works fine.
Screenshot is from your github Page -