about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/features
diff options
context:
space:
mode:
authormultiple creatures <dev@multiple-creature.party>2019-08-24 21:14:00 -0500
committermultiple creatures <dev@multiple-creature.party>2019-08-24 21:14:00 -0500
commitb17c64b7ed54548c2ef7c3db38e8992d3fa08454 (patch)
treeb5e91264c34363c4605fe3bf84d63fde6ac01c78 /app/javascript/flavours/glitch/features
parentce4d5a2677fbe59bc63c95ccc842569a4d51bd25 (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.js2
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}