diff --git a/web/src/lib/components/alias-filter-select.svelte b/web/src/lib/components/alias-filter-select.svelte index 9c9b43e..f0bb5b6 100644 --- a/web/src/lib/components/alias-filter-select.svelte +++ b/web/src/lib/components/alias-filter-select.svelte @@ -5,12 +5,14 @@ availableAliases = [], value = $bindable("all"), label = "Alias", - allLabel = "All nodes" + allLabel = "All nodes", + onValueChange }: { availableAliases: string[]; value?: string; label?: string; allLabel?: string; + onValueChange?: (next: string) => void; } = $props(); $effect(() => { @@ -25,7 +27,15 @@