Change DropdownMenu component's items prop type (#31263)
				
					
				
			This commit is contained in:
		
							parent
							
								
									2a704add90
								
							
						
					
					
						commit
						bb3941f885
					
				@ -20,7 +20,7 @@ let id = 0;
 | 
				
			|||||||
class DropdownMenu extends PureComponent {
 | 
					class DropdownMenu extends PureComponent {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  static propTypes = {
 | 
					  static propTypes = {
 | 
				
			||||||
    items: PropTypes.oneOfType([PropTypes.array, ImmutablePropTypes.list]).isRequired,
 | 
					    items: PropTypes.array.isRequired,
 | 
				
			||||||
    loading: PropTypes.bool,
 | 
					    loading: PropTypes.bool,
 | 
				
			||||||
    scrollable: PropTypes.bool,
 | 
					    scrollable: PropTypes.bool,
 | 
				
			||||||
    onClose: PropTypes.func.isRequired,
 | 
					    onClose: PropTypes.func.isRequired,
 | 
				
			||||||
@ -165,7 +165,7 @@ class Dropdown extends PureComponent {
 | 
				
			|||||||
    children: PropTypes.node,
 | 
					    children: PropTypes.node,
 | 
				
			||||||
    icon: PropTypes.string,
 | 
					    icon: PropTypes.string,
 | 
				
			||||||
    iconComponent: PropTypes.func,
 | 
					    iconComponent: PropTypes.func,
 | 
				
			||||||
    items: PropTypes.oneOfType([PropTypes.array, ImmutablePropTypes.list]),
 | 
					    items: PropTypes.array.isRequired,
 | 
				
			||||||
    loading: PropTypes.bool,
 | 
					    loading: PropTypes.bool,
 | 
				
			||||||
    size: PropTypes.number,
 | 
					    size: PropTypes.number,
 | 
				
			||||||
    title: PropTypes.string,
 | 
					    title: PropTypes.string,
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user