fix/frontend: filter out league classic champions
pipeline / lint-and-format (push) Failing after 4m6s
pipeline / build-and-push-images (push) Has been skipped
pipeline / lint-and-publish-chart (push) Has been skipped

This commit is contained in:
2026-08-08 22:36:18 +02:00
parent ff9d88d582
commit 9f3c7bc587
+2
View File
@@ -31,6 +31,8 @@ const champions = computed(() => {
return championsData.value
.slice(1)
.filter((champion: ChampionSummary) => !champion.name.includes('Doom Bot'))
// Filter out League Classic champions, prefixed by `jade_`
.filter((champion: ChampionSummary) => !champion.alias.includes('jade_'))
.sort((a: ChampionSummary, b: ChampionSummary) => a.name.localeCompare(b.name))
})