fix: simplify dropdown boolean fields

This commit is contained in:
2026-05-24 22:44:39 +02:00
parent fc1883a6c3
commit 258c676e89

View File

@@ -1,7 +1,7 @@
class UIDropdown extends HTMLElement { class UIDropdown extends HTMLElement {
isOpen: boolean = false; isOpen = false;
contentEl: HTMLElement | null = null; contentEl: HTMLElement | null = null;
isClosing: boolean = false; // debounce flag isClosing = false; // debounce flag
constructor() { constructor() {
super(); super();