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
onVisibleChange is not fired when menu item is selected 这个问题在现在的最新版中仍然存在 https://codesandbox.io/s/jiben-antd492-forked-jldb1?fontsize=14&hidenavigation=1&theme=dark
The text was updated successfully, but these errors were encountered:
` const onClick = e => { const { onOverlayClick } = props; const overlayProps = getOverlayElement().props; setTriggerVisible(false);
if (onOverlayClick) { onOverlayClick(e); } if (overlayProps.onClick) { overlayProps.onClick(e); }
};
const onVisibleChange = (visible: boolean) => { const { onVisibleChange } = props; setTriggerVisible(visible); if (typeof onVisibleChange === 'function') { onVisibleChange(visible); } };`
Sorry, something went wrong.
No branches or pull requests
onVisibleChange is not fired when menu item is selected
这个问题在现在的最新版中仍然存在
https://codesandbox.io/s/jiben-antd492-forked-jldb1?fontsize=14&hidenavigation=1&theme=dark
The text was updated successfully, but these errors were encountered: