diff --git a/src/components/DictionaryView.vue b/src/components/DictionaryView.vue
index 24de967281c9d40a58275594f3055fb551bf2b9e..c4d2e679799cf6d99ea3907b687d3f2a85e5bf98 100644
--- a/src/components/DictionaryView.vue
+++ b/src/components/DictionaryView.vue
@@ -214,19 +214,31 @@ export default {
   methods: {
     select_result: function(event) {
       this.event = event
-      if(event.articles){
+      if(event.article_ids){
         let source = '/' + this.lang + '/w/' + event.match
         this.$router.push(source)
-        /*
-        this.search_results = event.articles.map(a => Object.assign(a, {source: source}))
-        this.article = null
-        this.error = null
+        let unwrapped = []
+        for (const d in event.article_ids) {
+          event.article_ids[d].forEach(i => unwrapped.push({dictionary: d, id: i}))
+        }
+
+        let self = this        
+        Promise.all(unwrapped.map((article) => {
+          return axios.get(`${api_endpoint}/${article.dictionary}/article/${article.id}`)
+
+        })).then((response) => {
+          self.search_results = response.map((element, index) => {
+            return Object.assign(element.data, {source: source, match: event.match, dictionary: unwrapped[index].dictionary})
+          })
+          self.article = null
+          self.error = null
+          history.replaceState({article: self.article, search_results: self.search_results, lang: self.lang, error: self.error}, '')
+          this.$plausible.trackEvent('dropdown selection', {props: {query: event.q, match: event.match}})
+
+        })
+        
+        
         
-        history.replaceState({article: this.article, search_results: this.search_results, lang: this.lang, error: this.error}, '')
-        */
-        this.waiting_for_articles = true
-        navigate_to_word(this, event.match)
-        this.$plausible.trackEvent('dropdown selection', {props: {query: event.q, match: event.match}})
       }else{
         this.waiting_for_articles = true
         this.article = null