Unverified Commit b5af931f authored by Marwane Kalam-Alami's avatar Marwane Kalam-Alami Committed by GitHub

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

parent d7d00b44
...@@ -243,7 +243,7 @@ export default { ...@@ -243,7 +243,7 @@ export default {
router, router,
created () { created () {
this.$store.commit('page/SET_MODE', 'tags') this.$store.commit('page/SET_MODE', 'tags')
this.selection = _.compact(this.$route.path.split('/')) this.selection = _.compact(decodeURI(this.$route.path).split('/'))
}, },
mounted () { mounted () {
this.locales = _.concat( this.locales = _.concat(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment