diff --git a/packages/react/components/Dialog/Component.tsx b/packages/react/components/Dialog/Component.tsx index b0051ac..7e5d00d 100644 --- a/packages/react/components/Dialog/Component.tsx +++ b/packages/react/components/Dialog/Component.tsx @@ -184,12 +184,16 @@ const DialogContent = React.forwardRef( ...props, opened, }); - const { children, ...otherPropsExtracted } = otherPropsCompressed; + const { children, onClick, ...otherPropsExtracted } = otherPropsCompressed; return (
{ + e.stopPropagation() + onClick?.(e) + }} > {children}