Closed PeterBeckley closed 1 year ago
Hi, did this start to happen with yesterdays release?
Yes, sorry for not adding that.
Same problem, just installed the plugin
In commit 649a7fd638937bace97dbd16196f1355b707fee8, file main.ts
, the code
const box: Box = {
classNames: [],
}
was replaced with
const box: Box = {}
So the following operations won't push the classes (today
, hasData
and isEmpty
) into box.classNames
as we expected, thus cause this issue and #63.
// main.ts
box.classNames?.push("today")
box.classNames?.push("hasData")
box.classNames?.push("isEmpty")
Class "isEmpty" isn't getting added to the
<li>
s, so those cells have the same color regardless of light or dark mode. Text elements properly switch between modes, just not the empty cells. EDIT: no class names are getting pushed. "today" is missing as well.