fix(champions): re-apply current filters on most played check

This commit is contained in:
Valentin Kaelin 2022-01-08 01:04:49 +01:00
parent 5c79f04563
commit 3d4c969ea0

View file

@ -233,6 +233,12 @@ export default {
watch: {
champions() {
this.updateChampionsList()
},
onlyMostPlayed() {
// Re-apply the current sorting
this.order *= -1
this.sortBy(this.sortProps)
}
},