summaryrefslogtreecommitdiffstats
path: root/webapp/components/change_url_modal.jsx
diff options
context:
space:
mode:
authorDavid Meza <dmeza@users.noreply.github.com>2017-08-01 07:12:25 -0500
committerGeorge Goldberg <george@gberg.me>2017-08-01 13:12:25 +0100
commitb023b891550cd8fb2f874e822f05921d13f51fb2 (patch)
treeb347516f83cc152da05e297c4b702e225e3eb3bc /webapp/components/change_url_modal.jsx
parent00e8b6621a7ddf13222144d4acf80421204a23cc (diff)
downloadchat-b023b891550cd8fb2f874e822f05921d13f51fb2.tar.gz
chat-b023b891550cd8fb2f874e822f05921d13f51fb2.tar.bz2
chat-b023b891550cd8fb2f874e822f05921d13f51fb2.zip
Use Constants.MAX_CHANNELNAME_LENGTH where a fixed number like 22 or 64 is used for max length of channel names. (#7041)
Diffstat (limited to 'webapp/components/change_url_modal.jsx')
-rw-r--r--webapp/components/change_url_modal.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/webapp/components/change_url_modal.jsx b/webapp/components/change_url_modal.jsx
index a94a33ad3..88304a4a7 100644
--- a/webapp/components/change_url_modal.jsx
+++ b/webapp/components/change_url_modal.jsx
@@ -191,7 +191,7 @@ export default class ChangeUrlModal extends React.Component {
type='text'
ref='urlinput'
className='form-control'
- maxLength='22'
+ maxLength={Constants.MAX_CHANNELNAME_LENGTH}
onChange={this.onURLChanged}
value={this.state.currentURL}
autoFocus={true}