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

Keep stage variable in DictionaryView

parent eab82742
No related branches found
No related tags found
No related merge requests found
......@@ -90,7 +90,7 @@
this.items.push({q: q, match: q, label: q+" ", time: time, search: search})
}
let self = this
self.api.get('suggest?', {params: {q: q, dict: self.$parent.lang, n: 80, scope: 'w', stage: self.$parent.API_STAGE}})
self.api.get('suggest?', {params: {q: q, dict: self.$parent.lang, n: 80, scope: 'w', stage: self.$parent.stage}})
.then(async (response) => {
if (self.$refs.autocomplete.searchInput == q & self.suggesting) {
......
......@@ -157,7 +157,7 @@ function navigate_to_query(self, word) {
let query = self.event ? self.event : {q: word}
// Get article IDs
api.get('articles?', {params: {w: query.match || query.q, dict: self.lang, scope: "w", stage: API_STAGE}}).then((response) => {
api.get('articles?', {params: {w: query.match || query.q, dict: self.lang, scope: "w", stage: self.stage}}).then((response) => {
let article_ids = response.data
let unwrapped = []
for (const d in article_ids) {
......@@ -224,7 +224,8 @@ export default {
error: null,
monthly_bm: null,
monthly_nn: null,
event: null
event: null,
stage: API_STAGE
}
},
computed: {
......
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