Fix compose form bug

This commit is contained in:
Eugen Rochko 2017-01-05 14:18:38 +01:00
parent ca7dce4a5a
commit a1de2e332d
1 changed files with 1 additions and 1 deletions

View File

@ -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.