We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3ecb2e commit 83452f3Copy full SHA for 83452f3
packages/coreui-react/src/components/modal/CModal.tsx
@@ -108,6 +108,7 @@ export const CModal = forwardRef<HTMLDivElement, CModalProps>(
108
transition = true,
109
unmountOnClose = true,
110
visible,
111
+ ...attributes
112
},
113
ref,
114
) => {
@@ -232,6 +233,7 @@ export const CModal = forwardRef<HTMLDivElement, CModalProps>(
232
233
fullscreen={fullscreen}
234
scrollable={scrollable}
235
size={size}
236
+ {...attributes}
237
>
238
<CModalContent ref={modalContentRef}>{children}</CModalContent>
239
</CModalDialog>
0 commit comments