Browse Source

fix: support tags containing special characters (#2743) (#2748)

pull/2829/head
Marwane Kalam-Alami 3 years ago
committed by GitHub
parent
commit
b5af931f88
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. 2
      client/components/tags.vue

2
client/components/tags.vue

@ -243,7 +243,7 @@ export default {
router,
created () {
this.$store.commit('page/SET_MODE', 'tags')
this.selection = _.compact(this.$route.path.split('/'))
this.selection = _.compact(decodeURI(this.$route.path).split('/'))
},
mounted () {
this.locales = _.concat(

Loading…
Cancel
Save