reactjs-popup icon indicating copy to clipboard operation
reactjs-popup copied to clipboard

Popup closes on document click even without closeOnDocumentClick

Open Adam-Miszczak opened this issue 8 months ago • 1 comments

Version

2.0.5

Expected Behavior

I have a Popup set up like this:

<Popup open={showBidConfirm} onClose={closeModal2}>
     ...
</Popup>

When I click outside of the popup, it closes, despite not having the closeOnDocumentClick property.

Actual Behavior

The popup closes on document click even without having the closeOnDocumentClick property.

Adam-Miszczak avatar Oct 14 '23 14:10 Adam-Miszczak

You have to explicitly set closeOnDocumentClick to false to solve this.

benomatis avatar Nov 03 '23 10:11 benomatis