We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Having a ModalContainer without ModalDialog cannot be closed.
ModalContainer
ModalDialog
Example:
<ModalContainer onClose={onClose}> {loading ? <div style={{...}}> <span>Loading ...</span> </div> : <ModalDialog onClose={onClose}> {children} </ModalDialog> } </ModalContainer>
In this example the modal cannot be closed as long as loading == true. Neither clicking the background nor pressing ESC works.
loading == true
The text was updated successfully, but these errors were encountered:
Workaround: if you include a hidden <ModalDialog> element in the container, then you can click to close.
<ModalDialog>
Sorry, something went wrong.
No branches or pull requests
Having a
ModalContainer
withoutModalDialog
cannot be closed.Example:
In this example the modal cannot be closed as long as
loading == true
. Neither clicking the background nor pressing ESC works.The text was updated successfully, but these errors were encountered: