From 2f89a9a880f1c2fd3f239b751be28e4bdf88458c Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Fri, 19 Dec 2025 12:26:48 -0800 Subject: [PATCH] hide Standard series tag --- src/lib/components/tags/CharacterTags.svelte | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/lib/components/tags/CharacterTags.svelte b/src/lib/components/tags/CharacterTags.svelte index c3d3590c..0fbf8d9a 100644 --- a/src/lib/components/tags/CharacterTags.svelte +++ b/src/lib/components/tags/CharacterTags.svelte @@ -48,8 +48,10 @@ // Check if character has season (seasonal variant), but hide if Yukata+Summer const hasSeason = $derived(seasonText !== null && !isYukataWithSummer) - // Check if character has series with different text than season - const hasDistinctSeries = $derived(seriesText !== null && seriesText !== seasonText) + // Check if character has series with different text than season (exclude "Standard") + const hasDistinctSeries = $derived( + seriesText !== null && seriesText !== seasonText && seriesText !== 'Standard' + ) // Whether any tags should be shown const hasTags = $derived(hasSeason || hasDistinctSeries)