DataTransfer.types may Array-like object (#7827)
This commit is contained in:
		
							parent
							
								
									7eec279c7f
								
							
						
					
					
						commit
						b347d55432
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -230,7 +230,7 @@ export default class UI extends React.PureComponent {
 | 
			
		|||
      this.dragTargets.push(e.target);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    if (e.dataTransfer && e.dataTransfer.types.includes('Files')) {
 | 
			
		||||
    if (e.dataTransfer && Array.from(e.dataTransfer.types).includes('Files')) {
 | 
			
		||||
      this.setState({ draggingOver: true });
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Reference in a new issue