mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
added radix to parseInt() call
This commit is contained in:
parent
8c99bfe066
commit
d8d6dbffee
1 changed files with 1 additions and 1 deletions
|
@ -213,7 +213,7 @@ settings =
|
||||||
collaborators: -1
|
collaborators: -1
|
||||||
dropbox: true
|
dropbox: true
|
||||||
versioning: true
|
versioning: true
|
||||||
compileTimeout: parseInt(process.env["COMPILE_TIMEOUT"]) or 180
|
compileTimeout: parseInt(process.env["COMPILE_TIMEOUT"] or 180, 10)
|
||||||
compileGroup: "standard"
|
compileGroup: "standard"
|
||||||
trackChanges: true
|
trackChanges: true
|
||||||
templates: true
|
templates: true
|
||||||
|
|
Loading…
Reference in a new issue