[UI/UX][Bug] Fixing obsolete reference in Pokédex to filteredPokemonContainers #5415

This commit is contained in:
Wlowscha 2025-02-25 22:17:22 +01:00 committed by GitHub
parent 8cc5f650f3
commit 7a9bede38d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1538,7 +1538,7 @@ export default class PokedexUiHandler extends MessageUiHandler {
return 0; return 0;
}); });
this.filteredIndices = this.filteredPokemonContainers.map(c => c.species.speciesId); this.filteredIndices = this.filteredPokemonData.map(c => c.species.speciesId);
this.updateScroll(); this.updateScroll();
}; };