diff --git a/webapp/components/textbox.jsx b/webapp/components/textbox.jsx index 21f784af5b..f158486885 100644 --- a/webapp/components/textbox.jsx +++ b/webapp/components/textbox.jsx @@ -246,6 +246,14 @@ export default class Textbox extends React.Component { ); + let textboxClassName = 'form-control custom-textarea'; + if (this.props.emojiEnabled) { + textboxClassName += ' custom-textarea--emoji-picker'; + } + if (this.state.connection) { + textboxClassName += ' ' + this.state.connection; + } + return (