diff --git a/src/App.vue b/src/App.vue index 7304c4b9d9ef8b95bcf41619ea7755c7135eb800..4889e973714ddc445da37980fb8ffe909a9b946e 100644 --- a/src/App.vue +++ b/src/App.vue @@ -80,7 +80,7 @@ window.onpopstate = function (event) { function navigate_to_article(self, article_id) { axios.get(self.api_pref + '' + article_id) .then(function(response){ - self.article = response.data._source + self.article = response.data self.waiting = false history.replaceState({article: self.article, search_results: self.search_results, lang: self.lang}, '') })