diff options
author | multiple creatures <dev@multiple-creature.party> | 2019-08-24 21:14:00 -0500 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-08-24 21:14:00 -0500 |
commit | b17c64b7ed54548c2ef7c3db38e8992d3fa08454 (patch) | |
tree | b5e91264c34363c4605fe3bf84d63fde6ac01c78 /app/javascript/flavours/glitch/features | |
parent | ce4d5a2677fbe59bc63c95ccc842569a4d51bd25 (diff) |
raise description limit to 6666
Diffstat (limited to 'app/javascript/flavours/glitch/features')
-rw-r--r-- | app/javascript/flavours/glitch/features/compose/components/upload.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/features/compose/components/upload.js b/app/javascript/flavours/glitch/features/compose/components/upload.js index 84edf664e..ef0acac84 100644 --- a/app/javascript/flavours/glitch/features/compose/components/upload.js +++ b/app/javascript/flavours/glitch/features/compose/components/upload.js @@ -113,7 +113,7 @@ class Upload extends ImmutablePureComponent { <textarea placeholder={intl.formatMessage(messages.description)} value={description} - maxLength={420} + maxLength={6666} onFocus={this.handleInputFocus} onChange={this.handleInputChange} onBlur={this.handleInputBlur} |