summaryrefslogtreecommitdiffstats
path: root/webapp/components/textbox.jsx
diff options
context:
space:
mode:
authorNick Frazier <nrflaw@gmail.com>2016-12-06 18:49:36 -0500
committerJoram Wilander <jwawilander@gmail.com>2016-12-06 18:49:36 -0500
commited15f10b7952e1143b49621dd978a2175435cbd0 (patch)
tree7a49b099de69f3257dbf548066884db8dc71ffb2 /webapp/components/textbox.jsx
parent3ea49822b3dce879e7ca4dd878d40a17f82f528c (diff)
downloadchat-ed15f10b7952e1143b49621dd978a2175435cbd0.tar.gz
chat-ed15f10b7952e1143b49621dd978a2175435cbd0.tar.bz2
chat-ed15f10b7952e1143b49621dd978a2175435cbd0.zip
[PLT-4318] Display a message when post is over 4000 characters (#4687)
* test changes * added functionality * css updates * additional css updates * i18n updates * textbox cleanup * var naming tweak * replaced jQuery with React-based UI changes
Diffstat (limited to 'webapp/components/textbox.jsx')
-rw-r--r--webapp/components/textbox.jsx1
1 files changed, 0 insertions, 1 deletions
diff --git a/webapp/components/textbox.jsx b/webapp/components/textbox.jsx
index 6ba925ed7..b9b000282 100644
--- a/webapp/components/textbox.jsx
+++ b/webapp/components/textbox.jsx
@@ -205,7 +205,6 @@ export default class Textbox extends React.Component {
className={`form-control custom-textarea ${this.state.connection}`}
type='textarea'
spellCheck='true'
- maxLength={Constants.MAX_POST_LEN}
placeholder={this.props.createMessage}
onChange={this.props.onChange}
onKeyPress={this.handleKeyPress}