Only consider mouse move in scrolling on item insertion (#9262)
Fixes #9259
This commit is contained in:
		
							parent
							
								
									208d278cbc
								
							
						
					
					
						commit
						cc1f13dfd0
					
				@ -136,7 +136,7 @@ export default class ScrollableList extends PureComponent {
 | 
				
			|||||||
      React.Children.count(prevProps.children) < React.Children.count(this.props.children) &&
 | 
					      React.Children.count(prevProps.children) < React.Children.count(this.props.children) &&
 | 
				
			||||||
      this.getFirstChildKey(prevProps) !== this.getFirstChildKey(this.props);
 | 
					      this.getFirstChildKey(prevProps) !== this.getFirstChildKey(this.props);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if ((someItemInserted && this.node.scrollTop > 0) || this.mouseMovedRecently) {
 | 
					    if (someItemInserted && (this.node.scrollTop > 0 || this.mouseMovedRecently)) {
 | 
				
			||||||
      return this.node.scrollHeight - this.node.scrollTop;
 | 
					      return this.node.scrollHeight - this.node.scrollTop;
 | 
				
			||||||
    } else {
 | 
					    } else {
 | 
				
			||||||
      return null;
 | 
					      return null;
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user