From 3ce37b6067cb605a26914979b77a201764be5ed2 Mon Sep 17 00:00:00 2001 From: Denozordec Date: Fri, 10 Apr 2026 15:08:39 +0700 Subject: [PATCH] Refactor alias filter select component to use native select element - Replaced the custom select component with a native HTML select element for improved performance and accessibility. - Simplified value change handling by directly binding the select's value and updating the onChange event. - Ensured the selected value defaults to "all" if not present in available aliases, enhancing user experience. --- .../lib/components/alias-filter-select.svelte | 35 +++++++------------ 1 file changed, 12 insertions(+), 23 deletions(-) diff --git a/web/src/lib/components/alias-filter-select.svelte b/web/src/lib/components/alias-filter-select.svelte index f0bb5b6..960134b 100644 --- a/web/src/lib/components/alias-filter-select.svelte +++ b/web/src/lib/components/alias-filter-select.svelte @@ -1,6 +1,4 @@