Browse Source

fix: add missing decodeURIComponent while page load (#4244)

pull/4326/merge
Mostafa 3 years ago
committed by GitHub
parent
commit
9f19543488
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions
  1. 4
      client/themes/default/components/page.vue

4
client/themes/default/components/page.vue

@ -564,11 +564,11 @@ export default {
if (window.location.hash && window.location.hash.length > 1) {
if (document.readyState === 'complete') {
this.$nextTick(() => {
this.$vuetify.goTo(window.location.hash, this.scrollOpts)
this.$vuetify.goTo(decodeURIComponent(window.location.hash), this.scrollOpts)
})
} else {
window.addEventListener('load', () => {
this.$vuetify.goTo(window.location.hash, this.scrollOpts)
this.$vuetify.goTo(decodeURIComponent(window.location.hash), this.scrollOpts)
})
}
}

Loading…
Cancel
Save