hide Standard series tag
This commit is contained in:
parent
5e62b2160a
commit
2f89a9a880
1 changed files with 4 additions and 2 deletions
|
|
@ -48,8 +48,10 @@
|
||||||
// Check if character has season (seasonal variant), but hide if Yukata+Summer
|
// Check if character has season (seasonal variant), but hide if Yukata+Summer
|
||||||
const hasSeason = $derived(seasonText !== null && !isYukataWithSummer)
|
const hasSeason = $derived(seasonText !== null && !isYukataWithSummer)
|
||||||
|
|
||||||
// Check if character has series with different text than season
|
// Check if character has series with different text than season (exclude "Standard")
|
||||||
const hasDistinctSeries = $derived(seriesText !== null && seriesText !== seasonText)
|
const hasDistinctSeries = $derived(
|
||||||
|
seriesText !== null && seriesText !== seasonText && seriesText !== 'Standard'
|
||||||
|
)
|
||||||
|
|
||||||
// Whether any tags should be shown
|
// Whether any tags should be shown
|
||||||
const hasTags = $derived(hasSeason || hasDistinctSeries)
|
const hasTags = $derived(hasSeason || hasDistinctSeries)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue