mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
Fix default value
This commit is contained in:
parent
9c11572ff3
commit
5f091ef876
@ -29,7 +29,7 @@ const ACTION_HISTORY_MAX_ROWS = section.flag('maxRows').requireInt({
|
|||||||
|
|
||||||
const ACTION_HISTORY_MAX_BYTES = section.flag('maxBytes').requireInt({
|
const ACTION_HISTORY_MAX_BYTES = section.flag('maxBytes').requireInt({
|
||||||
envVar: 'GRIST_ACTION_HISTORY_MAX_BYTES',
|
envVar: 'GRIST_ACTION_HISTORY_MAX_BYTES',
|
||||||
defaultValue: 1_000_0000_0000, // 1 GB.
|
defaultValue: 1e9, // 1 GB.
|
||||||
minValue: 1, // 1 B.
|
minValue: 1, // 1 B.
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user