summaryrefslogtreecommitdiffstats
path: root/webapp
diff options
context:
space:
mode:
authorRobin Naundorf <r.naundorf@fh-muenster.de>2017-02-07 16:20:35 +0100
committerenahum <nahumhbl@gmail.com>2017-02-07 07:20:35 -0800
commit439d5b7ed7547ac05693b7524ddc464469301a87 (patch)
tree34fca8376394c69643b3f867f34a2b726f7daa53 /webapp
parent68a05653ea6f2588a27c8ce523b0d213e48f6480 (diff)
downloadchat-439d5b7ed7547ac05693b7524ddc464469301a87.tar.gz
chat-439d5b7ed7547ac05693b7524ddc464469301a87.tar.bz2
chat-439d5b7ed7547ac05693b7524ddc464469301a87.zip
PLT-5336: Allow Header of 1024 chars in New Channel Modal (#5294)
Diffstat (limited to 'webapp')
-rw-r--r--webapp/components/new_channel_modal.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/webapp/components/new_channel_modal.jsx b/webapp/components/new_channel_modal.jsx
index be97532dc..0a73c9fab 100644
--- a/webapp/components/new_channel_modal.jsx
+++ b/webapp/components/new_channel_modal.jsx
@@ -310,7 +310,7 @@ export default class NewChannelModal extends React.Component {
ref='channel_header'
rows='4'
placeholder={Utils.localizeMessage('channel_modal.headerEx', 'E.g.: "[Link Title](http://example.com)"')}
- maxLength='128'
+ maxLength='1024'
value={this.props.channelData.header}
onChange={this.handleChange}
tabIndex='2'