diff --git a/src/components/DictionaryView.vue b/src/components/DictionaryView.vue
index e99c41b4631a691a5cee1d920a31eadb4c96f35a..601826e04d4ad436f6b91953cb7cc9963508b7de 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
       })