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:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user