277a1d5d1f
## Issue Second attempt at 5571: Limit description length on channel edit ## Changes - Undo #5573: restore limit back to 5000. - Translate the `bad-txns-claimscriptsize-toolarge (code 16)` error into `Transaction limit reached. Try reducing the Description length.`
4 lines
179 B
JavaScript
4 lines
179 B
JavaScript
export const FF_MAX_CHARS_DEFAULT = 2000;
|
|
export const FF_MAX_CHARS_IN_COMMENT = 2000;
|
|
export const FF_MAX_CHARS_IN_DESCRIPTION = 5000;
|
|
export const FF_MAX_CHARS_IN_POST = 10000;
|