From d93a1548d36e3d4d9fc3cbe7600a6021273a19c0 Mon Sep 17 00:00:00 2001
From: Henrik Askjer <henrik.askjer@uib.no>
Date: Wed, 29 Sep 2021 12:17:28 +0200
Subject: [PATCH] Load concepts from oda dev

---
 src/components/DictionaryView.vue | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/components/DictionaryView.vue b/src/components/DictionaryView.vue
index e99c41b4..601826e0 100644
--- a/src/components/DictionaryView.vue
+++ b/src/components/DictionaryView.vue
@@ -298,11 +298,11 @@ export default {
     this.lang = 'bob,nob'
 
     Promise.all([
-      axios.get(api_endpoint + '/bob').then(function(response){
+      axios.get(oda_dev + '/nob/concepts.json').then(function(response){
         let concepts = response.data.concepts
         entities.bob = concepts
       }),
-      axios.get(api_endpoint + '/nob').then(function(response){
+      axios.get(oda_dev + '/nob/concepts.json').then(function(response){
         let concepts = response.data.concepts
         entities.nob = concepts
       })
-- 
GitLab