From 2f92ce8bb42abbf3c6c8058f8e490b4b48741549 Mon Sep 17 00:00:00 2001 From: infinite-persistence Date: Wed, 14 Jul 2021 09:12:48 +0800 Subject: [PATCH] Bump comment and reply page size to 10 (was 5 and 3, respectively) --- ui/constants/comment.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/constants/comment.js b/ui/constants/comment.js index 5b4d0b756..c265d3956 100644 --- a/ui/constants/comment.js +++ b/ui/constants/comment.js @@ -17,5 +17,5 @@ export const BLOCK_LEVEL = { ADMIN: 'admin', }; -export const COMMENT_PAGE_SIZE_TOP_LEVEL = 5; -export const COMMENT_PAGE_SIZE_REPLIES = 3; +export const COMMENT_PAGE_SIZE_TOP_LEVEL = 10; +export const COMMENT_PAGE_SIZE_REPLIES = 10;