Skip to content

Commit fe44645

Browse files
authored
Merge pull request #407 from jasperfirecai2/patch-1
Fix CRow not passing props
2 parents 71e13d8 + b2831a2 commit fe44645

File tree

1 file changed

+1
-1
lines changed
  • packages/coreui-react/src/components/grid

1 file changed

+1
-1
lines changed

packages/coreui-react/src/components/grid/CRow.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ export const CRow = forwardRef<HTMLDivElement, CRowProps>(
9191
})
9292

9393
return (
94-
<div className={classNames('row', repsonsiveClassNames, className)} ref={ref}>
94+
<div className={classNames('row', repsonsiveClassNames, className)} {...rest} ref={ref}>
9595
{children}
9696
</div>
9797
)

0 commit comments

Comments
 (0)