From 207a0e76c6448f16a235640731391a20967f2978 Mon Sep 17 00:00:00 2001
From: Henrik Askjer <henrik.askjer@uib.no>
Date: Thu, 23 Dec 2021 08:54:21 +0100
Subject: [PATCH] fix scope bug

---
 src/components/DictionaryView.vue | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/components/DictionaryView.vue b/src/components/DictionaryView.vue
index 1ae97155..2291853f 100644
--- a/src/components/DictionaryView.vue
+++ b/src/components/DictionaryView.vue
@@ -385,7 +385,7 @@ export default {
 
         generate_path: function(q) {
         if (q) {
-          let path = `/${this.lang}/search?q=${q}&scope=${this.scope}`
+          let path = `/${this.lang}/search?q=${q}`
           if (this.scope) path += "&scope=" + this.scope
           return path
         } 
-- 
GitLab