Skip to content

Commit

Permalink
Merge pull request #1401 from dhis2/fix/data-table-cell-props
Browse files Browse the repository at this point in the history
fix: pass through props for DataTableCell (DHIS2-15767)
  • Loading branch information
martinkrulltott authored Sep 11, 2023
2 parents 7efe185 + 589c573 commit bbf3f4d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions components/table/src/data-table/data-table-cell.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export const DataTableCell = forwardRef(
valid,
width,
onClick,
...props
},
ref
) => {
Expand All @@ -36,6 +37,7 @@ export const DataTableCell = forwardRef(
: TableDataCell
return (
<TableCell
{...props}
active={active}
align={align}
backgroundColor={backgroundColor}
Expand Down

0 comments on commit bbf3f4d

Please sign in to comment.