Skip to content
Snippets Groups Projects
Commit 09586463 authored by Henrik Askjer's avatar Henrik Askjer
Browse files

fix reload bug

parent 846c0c4a
No related branches found
No related tags found
No related merge requests found
......@@ -659,7 +659,7 @@ export default {
self.set_fulltext_highlight()
}
if (self.$route.query.page) self.page = parseInt(self.$route.query.page)
if (self.$route.query.perPage) self.perPage = self.$route.query.perPage
if (self.$route.query.perPage) self.perPage = parseInt(self.$route.query.perPage)
Promise.all([
axios.get(ARTICLE_ENDPOINT + 'bm/concepts.json').then(function(response){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment