Skip to content
Snippets Groups Projects
Commit dc5684c2 authored by Henrik Askjer's avatar Henrik Askjer
Browse files

fix bug when choosing all word classes

parent 5096d4b7
No related branches found
No related tags found
No related merge requests found
...@@ -333,7 +333,8 @@ export default { ...@@ -333,7 +333,8 @@ export default {
}) })
}, },
pos_param: function() { pos_param: function() {
return this.pos_selected.tag? '/'+this.pos_selected.tag.toLowerCase(): '' if (this.pos_selected.tag) return this.pos_selected.tag.toLowerCase()
return ''
}, },
update_lang_form: function (lang) { update_lang_form: function (lang) {
this.lang = lang this.lang = lang
...@@ -359,15 +360,16 @@ export default { ...@@ -359,15 +360,16 @@ export default {
if(this.$route.name == 'word') { if(this.$route.name == 'word') {
name = "w" name = "w"
query = this.$route.params.word query = this.$route.params.word
this.$router.push(`/${this.lang}/${name}/${query}/${pos.tag.toLowerCase()}`) this.$router.push(`/${this.lang}/${name}/${query+this.pos_param()}`)
navigate_to_query(this, query) navigate_to_query(this, query)
} }
else if (this.$route.name == 'search') { else if (this.$route.name == 'search') {
name = "search" name = "search"
query = this.$route.params.query query = this.$route.params.query
this.$router.push(`/${this.lang}/${name}/${query}/${pos.tag.toLowerCase()}`) this.$router.push(`/${this.lang}/${name}/${query+this.pos_param()}`)
navigate_to_query(this, query) navigate_to_query(this, query)
} }
}, },
article_link_click: function(item) { article_link_click: function(item) {
if (this.article && this.article.article_id == item.article_id){ if (this.article && this.article.article_id == item.article_id){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment