stop unnecessary statistic reqs

This commit is contained in:
gozzy 2022-11-23 04:45:56 +00:00
parent 0b6e21f721
commit efcfac5774

View File

@ -158,8 +158,19 @@ export default {
}
}
} else {
const { currency, amount } = this.selectedInstance
this.$store.dispatch('application/setAndUpdateStatistic', { currency, amount })
const userSelection = this.selectedInstance
const stateSelection = this.selectedStatistic
if (
!stateSelection ||
userSelection.amount !== stateSelection.amount ||
userSelection.currency !== stateSelection.currency
) {
this.$store.dispatch('application/setAndUpdateStatistic', {
currency: userSelection.currency,
amount: userSelection.amount
})
}
}
}
}