Browse Source

fix exception

pull/1240/head
Gabe Kangas 4 years ago
parent
commit
c1dd1b9bf3
  1. 3
      webroot/js/components/chat/chat-input.js

3
webroot/js/components/chat/chat-input.js

@ -244,9 +244,6 @@ export default class ChatInput extends Component { @@ -244,9 +244,6 @@ export default class ChatInput extends Component {
if (key === ':' || key === ';') {
this.injectEmoji();
}
this.setState({
inputCharsLeft: CHAT_MAX_MESSAGE_LENGTH - textValue.length,
});
}
handleMessageInputBlur() {

Loading…
Cancel
Save