From 94e734c1bdc2f7e377a469c57add45cf9261fba7 Mon Sep 17 00:00:00 2001 From: Saturnino Abril Date: Thu, 29 Jun 2017 22:36:55 +0800 Subject: [PLT-6655] Remove 1024 character limit with text settings at system console, except sitename of custom branding (#6597) * remove 1024 character limit with text settings at system console, except sitename of custom branding * add ability to set textarea of TextSetting --- webapp/components/admin_console/text_setting.jsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'webapp/components/admin_console/text_setting.jsx') diff --git a/webapp/components/admin_console/text_setting.jsx b/webapp/components/admin_console/text_setting.jsx index 879e352a4..5830828d2 100644 --- a/webapp/components/admin_console/text_setting.jsx +++ b/webapp/components/admin_console/text_setting.jsx @@ -6,7 +6,6 @@ import PropTypes from 'prop-types'; import React from 'react'; import Setting from './setting.jsx'; -import Constants from 'utils/constants.jsx'; export default class TextSetting extends React.Component { static get propTypes() { @@ -32,7 +31,7 @@ export default class TextSetting extends React.Component { static get defaultProps() { return { type: 'input', - maxLength: Constants.MAX_TEXTSETTING_LENGTH + maxLength: null }; } @@ -67,9 +66,9 @@ export default class TextSetting extends React.Component { id={this.props.id} className='form-control' rows='5' - maxLength='1024' placeholder={this.props.placeholder} value={this.props.value} + maxLength={this.props.maxLength} onChange={this.handleChange} disabled={this.props.disabled} /> -- cgit v1.2.3-1-g7c22