fix: add stopPropagation in DialogContent onClick
To prevent triggering closeOnClick on click of inner content.
This commit is contained in:
parent
21a2bfc3d0
commit
5c12c00cec
@ -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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user