diff --git a/frontend/ui/src/components/NavTags.svelte b/frontend/ui/src/components/NavTags.svelte index d4c696fc..d710e9b6 100644 --- a/frontend/ui/src/components/NavTags.svelte +++ b/frontend/ui/src/components/NavTags.svelte @@ -27,7 +27,7 @@ bind:value={filter} >
- {#each Object.keys($tags).sort() as itag, index} + {#each Object.keys($tags).sort(function (a, b) { return a.toLowerCase().localeCompare(b.toLowerCase()); }) as itag, index} {#if filter === "" || itag.toLowerCase().indexOf(filter.toLowerCase()) >= 0} #{itag}