diff --git a/client/src/components/Summoner/Champions/ChampionsTable.vue b/client/src/components/Summoner/Champions/ChampionsTable.vue index 46ebf8f..7ce06ea 100644 --- a/client/src/components/Summoner/Champions/ChampionsTable.vue +++ b/client/src/components/Summoner/Champions/ChampionsTable.vue @@ -233,6 +233,12 @@ export default { watch: { champions() { this.updateChampionsList() + }, + + onlyMostPlayed() { + // Re-apply the current sorting + this.order *= -1 + this.sortBy(this.sortProps) } },