mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-27 09:35:56 -05:00
fix(gh-5989): adjust comment load batch size
- adjust the studio reply comment load batch size to 25 instead of 20
This commit is contained in:
parent
2667827840
commit
ac670f7749
1 changed files with 1 additions and 1 deletions
|
@ -3,7 +3,7 @@ const eachLimit = require('async/eachLimit');
|
|||
const api = require('../lib/api');
|
||||
const log = require('../lib/log');
|
||||
|
||||
const COMMENT_LIMIT = 20;
|
||||
const COMMENT_LIMIT = 25;
|
||||
|
||||
const {
|
||||
addNewComment,
|
||||
|
|
Loading…
Reference in a new issue