From 7fb51c3eab73de11a2a49570b614bd024f435f15 Mon Sep 17 00:00:00 2001
From: Henrik Askjer <henrik.askjer@uib.no>
Date: Wed, 29 Sep 2021 14:29:55 +0200
Subject: [PATCH] Keep stage variable in DictionaryView

---
 src/components/Autocomplete.vue   | 2 +-
 src/components/DictionaryView.vue | 5 +++--
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/src/components/Autocomplete.vue b/src/components/Autocomplete.vue
index cc772990..3aac7c12 100644
--- a/src/components/Autocomplete.vue
+++ b/src/components/Autocomplete.vue
@@ -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) {
 
diff --git a/src/components/DictionaryView.vue b/src/components/DictionaryView.vue
index a66555ad..6612a850 100644
--- a/src/components/DictionaryView.vue
+++ b/src/components/DictionaryView.vue
@@ -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: {
-- 
GitLab