Compare commits

...

2 Commits

1 changed files with 7 additions and 4 deletions

View File

@ -384,10 +384,13 @@ export default {
//
closePeopleRanking() {
this.showPeopleRanking = false
//
setTimeout(() => {
this.showAmountRanking = true
}, 300)
if (this.amountTopThree.length > 0) {
setTimeout(() => {
this.showAmountRanking = true
}, 300)
} else {
this.$emit('onRankingComplete')
}
},
//