fix: add stopPropagation in DialogContent onClick

To prevent triggering closeOnClick on click of inner content.
This commit is contained in:
p-sw 2024-06-27 13:24:10 +09:00
parent 21a2bfc3d0
commit 5c12c00cec

View File

@ -184,12 +184,16 @@ const DialogContent = React.forwardRef<HTMLDivElement, DialogContentProps>(
...props,
opened,
});
const { children, ...otherPropsExtracted } = otherPropsCompressed;
const { children, onClick, ...otherPropsExtracted } = otherPropsCompressed;
return (
<div
{...otherPropsExtracted}
ref={ref}
className={dialogContentVariant(variantProps)}
onClick={(e) => {
e.stopPropagation()
onClick?.(e)
}}
>
{children}
</div>