diff --git a/src/components/table-unvirtualized/table-body/table-body-row/table-body-row.tsx b/src/components/table-unvirtualized/table-body/table-body-row/table-body-row.tsx index 840a3cb5..7dc4a781 100644 --- a/src/components/table-unvirtualized/table-body/table-body-row/table-body-row.tsx +++ b/src/components/table-unvirtualized/table-body/table-body-row/table-body-row.tsx @@ -8,7 +8,7 @@ export interface RowProps extends HTMLProps { } const TableBodyRow = forwardRef( - ({ children, className, isExpanded, style }, ref) => { + ({ children, className, isExpanded, style, ...props }, ref) => { return ( ( )} ref={ref} style={style} + {...props} > {children}