You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Have React 17 installed/running with the latest version of Cauldron. Have a Popover with a triggered button:
functionExample(){const[show,setShow]=useState(false);constonTogglePopover=()=>setShow(!show);constbuttonRef=useRef();return(<><ButtononClick={onTogglePopover}variant="secondary"buttonRef={buttonRef}>
Prompt!
</Button><Popovervariant="prompt"target={buttonRef}placement="auto"show={show}onClose={onTogglePopover}infoText="Are you sure you want to exit this wizard? All changes will be lost."/></>)}
Expected Behavior
The popover should appear when the button is clicked.
Actual Behavior
The popover does not appear.
Anything else we should know?
This is likely related to #1087 and #830. All of these components use ClickOutsideListener where the listener is activated preventing the actions from occurring.
The text was updated successfully, but these errors were encountered:
Steps to reproduce
Have React 17 installed/running with the latest version of Cauldron. Have a Popover with a triggered button:
Expected Behavior
The popover should appear when the button is clicked.
Actual Behavior
The popover does not appear.
Anything else we should know?
This is likely related to #1087 and #830. All of these components use
ClickOutsideListener
where the listener is activated preventing the actions from occurring.The text was updated successfully, but these errors were encountered: