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 544bc12 commit d5ad9c6Copy full SHA for d5ad9c6
packages/data/src/table/BodyCell.tsx
@@ -52,7 +52,7 @@ export const BodyCell = ({
52
const content = useMemo(() => {
53
const value = getByPath(item, column.id.toString());
54
if (column.renderer != null) {
55
- return column.renderer(item[column.id], item, index);
+ return column.renderer(value, item, index);
56
}
57
if (column.dataType === "boolean") {
58
const map = column.valueMap ?? { true: "Yes", false: "no" };
0 commit comments