diff --git a/app/components/post_textbox/post_textbox.js b/app/components/post_textbox/post_textbox.js index 700e10d28..deaff2c4c 100644 --- a/app/components/post_textbox/post_textbox.js +++ b/app/components/post_textbox/post_textbox.js @@ -233,7 +233,7 @@ class PostTextbox extends PureComponent { clearTimeout(this.timeout); } this.timeout = setTimeout(() => { - let {value: msg} = this.props; + let {value: msg} = this.state; msg += '\n'; this.handleTextChange(msg); }, 10);