Skip to content

v0.1.16

Choose a tag to compare

@poolski poolski released this 26 May 07:45
e8d30a6

Fix

Sidebar disappears on mobile after navigating to the panel

Two root causes:

  1. **:host had no height/overflow declaration — the panel content expanded the outer page height instead of scrolling within its own area. On mobile this caused the page to scroll, pushing HA's topbar (containing the hamburger/sidebar button) off screen.

  2. document click listener was never removed — the handler added to close the autocomplete dropdown was attached to document on each navigation but never cleaned up. It now uses a bound method removed via disconnectedCallback.