From 258c676e89f9e9e9592f1ddb812b0225a0aff785 Mon Sep 17 00:00:00 2001 From: mkelvers Date: Sun, 24 May 2026 22:44:39 +0200 Subject: [PATCH] fix: simplify dropdown boolean fields --- static/dropdown.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/dropdown.ts b/static/dropdown.ts index 5fd41c3..c932c2c 100644 --- a/static/dropdown.ts +++ b/static/dropdown.ts @@ -1,7 +1,7 @@ class UIDropdown extends HTMLElement { - isOpen: boolean = false; + isOpen = false; contentEl: HTMLElement | null = null; - isClosing: boolean = false; // debounce flag + isClosing = false; // debounce flag constructor() { super();