Fix error on reloading status detail column (#5248)
This commit is contained in:
		
				
					committed by
					
						
						Eugen Rochko
					
				
			
			
				
	
			
			
			
						parent
						
							c75ca0525b
						
					
				
				
					commit
					d5f490b1a2
				
			@@ -242,8 +242,8 @@ export default class Status extends ImmutablePureComponent {
 | 
				
			|||||||
  componentDidUpdate () {
 | 
					  componentDidUpdate () {
 | 
				
			||||||
    const { ancestorsIds } = this.props;
 | 
					    const { ancestorsIds } = this.props;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (ancestorsIds) {
 | 
					    if (ancestorsIds && ancestorsIds.size > 0) {
 | 
				
			||||||
      const element = this.node.querySelectorAll('.focusable')[this.props.ancestorsIds.size];
 | 
					      const element = this.node.querySelectorAll('.focusable')[ancestorsIds.size];
 | 
				
			||||||
      element.scrollIntoView();
 | 
					      element.scrollIntoView();
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user