Philippe
Philippe

Reputation: 1030

React how to close a popover with a modal

With react-bootstrap, I have a popover that contains a list. On click of one of the list items, it opens a modal.

How to close the popover when the modal is opening?

I tried:

Upvotes: 0

Views: 2894

Answers (1)

Andrii Starusiev
Andrii Starusiev

Reputation: 7764

Since your component Modal is a child of NumberOptions, Modal is closing too when NumberOptions is closing.

So you need to lift Modal component at least to the same level as OverlayTrigger.

Upvotes: 1

Related Questions