diff --git a/components/vc-table/src/TableCell.jsx b/components/vc-table/src/TableCell.jsx index 3efa16a6be..dea25a28b2 100644 --- a/components/vc-table/src/TableCell.jsx +++ b/components/vc-table/src/TableCell.jsx @@ -67,7 +67,7 @@ export default { let rowSpan; if (customRender) { - text = customRender(text, record, index); + text = customRender(text, record, index, column); if (isInvalidRenderCellText(text)) { tdProps.attrs = text.attrs || {}; tdProps.props = text.props || {};