Skip to content

Commit

Permalink
Merge pull request #407 from jasperfirecai2/patch-1
Browse files Browse the repository at this point in the history
Fix CRow not passing props
  • Loading branch information
mrholek authored Sep 18, 2024
2 parents 71e13d8 + b2831a2 commit fe44645
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/coreui-react/src/components/grid/CRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export const CRow = forwardRef<HTMLDivElement, CRowProps>(
})

return (
<div className={classNames('row', repsonsiveClassNames, className)} ref={ref}>
<div className={classNames('row', repsonsiveClassNames, className)} {...rest} ref={ref}>
{children}
</div>
)
Expand Down

0 comments on commit fe44645

Please sign in to comment.