Enhance alias filtering functionality in IP routes

- Added a new function to apply alias changes dynamically based on user selection, improving the responsiveness of the alias filter.
- Updated the alias selection logic to ensure consistency with URL parameters, enhancing user experience when navigating between different aliases.
- Refactored the alias filter component to include a class for better z-index management, ensuring proper display layering in the UI.
This commit is contained in:
Denozordec
2026-03-30 23:01:40 +07:00
parent 309750fd25
commit aaacb80f9a
2 changed files with 22 additions and 4 deletions
@@ -36,7 +36,7 @@
<Select.Trigger class="mt-1 w-[220px]">
{selectedLabel}
</Select.Trigger>
<Select.Content>
<Select.Content class="z-[1200]">
<Select.Item value="all">{allLabel}</Select.Item>
{#each availableAliases as alias (alias)}
<Select.Item value={alias}>{alias}</Select.Item>