Parcourir la source

Merge pull request #17251 from overleaf/tm-raise-history-diff-max-chunks

Raise MAX_CHUNK_REQUESTS to 10 in DiffManager

GitOrigin-RevId: e88960bbd5237f65375a830147783dcfa99ec220
Thomas il y a 2 ans
Parent
commit
89bc2e0b28
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      services/project-history/app/js/DiffManager.js

+ 1 - 1
services/project-history/app/js/DiffManager.js

@@ -9,7 +9,7 @@ import * as WebApiManager from './WebApiManager.js'
 import * as ChunkTranslator from './ChunkTranslator.js'
 import * as Errors from './Errors.js'
 
-let MAX_CHUNK_REQUESTS = 5
+let MAX_CHUNK_REQUESTS = 10
 
 /**
  * Container for functions that need to be mocked in tests