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, ...props,
opened, opened,
}); });
const { children, ...otherPropsExtracted } = otherPropsCompressed; const { children, onClick, ...otherPropsExtracted } = otherPropsCompressed;
return ( return (
<div <div
{...otherPropsExtracted} {...otherPropsExtracted}
ref={ref} ref={ref}
className={dialogContentVariant(variantProps)} className={dialogContentVariant(variantProps)}
onClick={(e) => {
e.stopPropagation()
onClick?.(e)
}}
> >
{children} {children}
</div> </div>