Do not modify scroll position unless content has been added to the top, not bottom
This commit is contained in:
		
							parent
							
								
									8ac4c4eed1
								
							
						
					
					
						commit
						4d2b690582
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -46,7 +46,7 @@ const StatusList = React.createClass({ | |||
|   }, | ||||
| 
 | ||||
|   componentDidUpdate (prevProps) { | ||||
|     if (prevProps.statusIds.size < this.props.statusIds.size && this._oldScrollPosition) { | ||||
|     if (prevProps.statusIds.size < this.props.statusIds.size && prevProps.statusIds.first() !== this.props.statusIds.first() && this._oldScrollPosition) { | ||||
|       const node = ReactDOM.findDOMNode(this); | ||||
| 
 | ||||
|       if (node.scrollTop > 0) { | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue