From 18745b2d5c1899bc279696548cb3ebecf7c6b90f Mon Sep 17 00:00:00 2001 From: Christopher Speller Date: Fri, 4 Nov 2016 17:20:21 -0400 Subject: Increase Channel Purpose length to 250, and add channel field length handling code to the slack importer (#4458) * Increase Channel Purpose length to 250. This commit increases the maxmimum length of the channel purpose field to 250, including the database migration necessary. It also adds a method to the Slack importer to check the lengths of channel properties before importing, and truncate them if necessary. Fixes #4168 * Fix database migration. --- webapp/components/edit_channel_purpose_modal.jsx | 2 +- webapp/components/new_channel_modal.jsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'webapp') diff --git a/webapp/components/edit_channel_purpose_modal.jsx b/webapp/components/edit_channel_purpose_modal.jsx index bfb4d181a..7ba2eff2c 100644 --- a/webapp/components/edit_channel_purpose_modal.jsx +++ b/webapp/components/edit_channel_purpose_modal.jsx @@ -155,7 +155,7 @@ export default class EditChannelPurposeModal extends React.Component { ref='purpose' className='form-control no-resize' rows='6' - maxLength='128' + maxLength='250' defaultValue={this.props.channel.purpose} onKeyDown={this.handleKeyDown} /> diff --git a/webapp/components/new_channel_modal.jsx b/webapp/components/new_channel_modal.jsx index 31ed15306..4122c3bfb 100644 --- a/webapp/components/new_channel_modal.jsx +++ b/webapp/components/new_channel_modal.jsx @@ -283,7 +283,7 @@ class NewChannelModal extends React.Component { ref='channel_purpose' rows='4' placeholder={this.props.intl.formatMessage({id: 'channel_modal.purpose'})} - maxLength='128' + maxLength='250' value={this.props.channelData.purpose} onChange={this.handleChange} tabIndex='2' -- cgit v1.2.3-1-g7c22