Fixed unexpected error
This commit is contained in:
		
							parent
							
								
									a1de2e332d
								
							
						
					
					
						commit
						00b9ba64c9
					
				@ -85,7 +85,7 @@ const ComposeForm = React.createClass({
 | 
				
			|||||||
  },
 | 
					  },
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  componentDidUpdate (prevProps) {
 | 
					  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 === null && this.props.in_reply_to !== null) || (prevProps.in_reply_to !== null && this.props.in_reply_to !== null && 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 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;
 | 
					      // 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.
 | 
					      // this provides a convenient shortcut to drop everyone else from the conversation.
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user