Closed
Description
Summary:
I need to stopPropagation onClick modal on dropdown menu.
But I set Modal component with onClick event handler, event didn't fire. So behind dropdown menu is closed.
How to set onClick handler?
Steps to reproduce:
- Set modal with onClick
stopEvent(e) {
e.stopPropagation();
}
<Modal
onClick={this.stopEvent} // Nothing happend
...
/>
Expected behavior:
Behind menu is closed.