Push column argument to cell's customRender function call. (#1513)
parent
6362bf9edb
commit
1b78a10ee6
|
@ -67,7 +67,7 @@ export default {
|
||||||
let rowSpan;
|
let rowSpan;
|
||||||
|
|
||||||
if (customRender) {
|
if (customRender) {
|
||||||
text = customRender(text, record, index);
|
text = customRender(text, record, index, column);
|
||||||
if (isInvalidRenderCellText(text)) {
|
if (isInvalidRenderCellText(text)) {
|
||||||
tdProps.attrs = text.attrs || {};
|
tdProps.attrs = text.attrs || {};
|
||||||
tdProps.props = text.props || {};
|
tdProps.props = text.props || {};
|
||||||
|
|
Loading…
Reference in New Issue