You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
[1.2.1] - 2026-04-21
Fixed
Overlay watcher stopped on view navigation — when navigating away from the view containing the card, both cards received disconnectedCallback() causing the watcher interval to be cleared. Overlay banners would never fire on any other view. Root cause was introduced in v1.2.0 by a misguided optimization; reverted. The watcher now stays alive for the page session once started.
Overlay continued firing after card deletion — _tick was not checking reg.disconnected, so deleted cards kept triggering banners. Added if (reg.disconnected) continue guard.