Skip to content
Snippets Groups Projects
Commit a1de2e33 authored by Eugen Rochko's avatar Eugen Rochko
Browse files

Fix compose form bug

parent ca7dce4a
No related branches found
No related tags found
No related merge requests found
......@@ -85,7 +85,7 @@ const ComposeForm = React.createClass({
},
componentDidUpdate (prevProps) {
if (!prevProps.in_reply_to || !this.props.in_reply_to || prevProps.in_reply_to.get('id') !== this.props.in_reply_to.get('id')) {
if ((!prevProps.in_reply_to && this.props.in_reply_to) || prevProps.in_reply_to.get('id') !== this.props.in_reply_to.get('id')) {
// If replying to zero or one users, places the cursor at the end of the textbox.
// If replying to more than one user, selects any usernames past the first;
// this provides a convenient shortcut to drop everyone else from the conversation.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment