diff --git a/src/components/DictionaryView.vue b/src/components/DictionaryView.vue
index c99220eae10b9a67a3a900af19a845f2d4699d53..576b54f7bdb0c1243c9a611f9eb57edb32933dbc 100644
--- a/src/components/DictionaryView.vue
+++ b/src/components/DictionaryView.vue
@@ -433,13 +433,13 @@ export default {
         this.max_scroll = document.body.scrollHeight - window.window.innerHeight-1
       }
 
-      let offset = 10 * this.page
+      let offset = 5 * this.page
       this.page += 1
       if (!self.waiting_for_articles) {
         self.waiting_for_articles = true  
         Promise.all([
-          load_articles(this, this.query, offset, 10, "bm"),
-          load_articles(this, this.query, offset, 10, "nn")
+          load_articles(this, this.query, offset, 5, "bm"),
+          load_articles(this, this.query, offset, 5, "nn")
         ]).then(() => {
           self.waiting_for_articles = false
         })