workaround for scrollIntoView bug ???
This commit is contained in:
		
							parent
							
								
									0f542d56b8
								
							
						
					
					
						commit
						f8749b268c
					
				
					 1 changed files with 4 additions and 2 deletions
				
			
		|  | @ -252,8 +252,10 @@ export default class Status extends ImmutablePureComponent { | ||||||
|     if (status && ancestorsIds && ancestorsIds.size > 0) { |     if (status && ancestorsIds && ancestorsIds.size > 0) { | ||||||
|       const element = this.node.querySelectorAll('.focusable')[ancestorsIds.size - 1]; |       const element = this.node.querySelectorAll('.focusable')[ancestorsIds.size - 1]; | ||||||
| 
 | 
 | ||||||
|       element.scrollIntoView(true); |       if (element) { | ||||||
|       this._scrolledIntoView = true; |         element.scrollIntoView(true); | ||||||
|  |         this._scrolledIntoView = true; | ||||||
|  |       } | ||||||
|     } |     } | ||||||
|   } |   } | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
		Loading…
	
		Reference in a new issue