This commit is contained in:
Timothy Jaeryang Baek 2025-11-04 18:14:09 -05:00
parent 2a98ba0ff8
commit 89e59d0103
2 changed files with 7 additions and 9 deletions

View file

@ -312,14 +312,12 @@
onMount(async () => {
if (items) {
tags = Array.from(
new Set(
items
.filter((item) => !(item.model?.info?.meta?.hidden ?? false))
.flatMap((item) => item.model?.tags ?? [])
.map((tag) => tag.name.toLowerCase())
)
).sort((a, b) => a.localeCompare(b));
tags = items
.filter((item) => !(item.model?.info?.meta?.hidden ?? false))
.flatMap((item) => item.model?.tags ?? [])
.map((tag) => tag.name);
// Remove duplicates and sort
tags = Array.from(new Set(tags)).sort((a, b) => a.localeCompare(b));
}
});

View file

@ -189,7 +189,7 @@
tags = models
.filter((model) => !(model?.meta?.hidden ?? false))
.flatMap((model) => model?.meta?.tags ?? [])
.map((tag) => tag.name.toLowerCase());
.map((tag) => tag.name);
// Remove duplicates and sort
tags = Array.from(new Set(tags)).sort((a, b) => a.localeCompare(b));