diff --git a/src/components/DataPage.vue b/src/components/DataPage.vue index 4a49c612..ebb52acc 100644 --- a/src/components/DataPage.vue +++ b/src/components/DataPage.vue @@ -302,10 +302,9 @@ export default { const key = this.reqKey if (!module || !action) return const routeName = this.$route.name - const { address, number, hash } = this.$route.params - const urlParam = address || number || hash + const urlParam = this.$route.params.address // If the parameters are the same when the router changes, we do not request the address information. - if (this.storedRouteName !== routeName || this.storedUrlParam !== urlParam) { + if (this.storedRouteName !== routeName || !urlParam) { // use Date for a random info this.storedRouteName = routeName || new Date() this.storedUrlParam = urlParam