fix(PopoverWidget): compatible with the React 16

This commit is contained in:
MrWindlike 2022-08-09 09:31:52 +08:00
parent 0bce0e9bb9
commit 01b1ba14d4

View File

@ -71,11 +71,11 @@ export const PopoverWidget = React.forwardRef<
emitter.emit('other-popover-close', path);
}, [path]);
const handleClickTrigger = useCallback(event => {
event.stopPropagation();
event.nativeEvent.stopImmediatePropagation();
}, []);
const handleClickContent = useCallback(
event => {
event.stopPropagation();
event.nativeEvent.stopImmediatePropagation();
emitter.emit('sub-popover-close', path);
},
[path]