I have 2 selects on one page. Click on first select arrow and than click on second select arrow. Both selects stay opened.

Problem is located in: f6920de
Return statement was removed and event not bubble to main handleMouseDown
if (!this.state.isOpen) {
- return;
+ this.setState({
+ isOpen: true,
+ });
}
// prevent default event handlers
event.stopPropagation();
event.preventDefault();