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,
|
...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>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user