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 53d219e commit b0c4c40Copy full SHA for b0c4c40
src/components/tableV2/core/rows.js
@@ -83,12 +83,12 @@ const Rows = ({
83
onMouseLeave={() => onHover()}
84
tableMeta={
85
typeof cell.column.columnDef.tableMeta === "function"
86
- ? cell.column.columnDef.tableMeta(row.original)
+ ? cell.column.columnDef.tableMeta(row)
87
: cell.column.columnDef.tableMeta
88
}
89
meta={
90
typeof cell.column.columnDef.meta === "function"
91
- ? cell.column.columnDef.meta(row.original)
+ ? cell.column.columnDef.meta(row)
92
: cell.column.columnDef.meta
93
94
{...(cell.column.getCanSort() &&
0 commit comments