Skip to content
This repository was archived by the owner on Jun 10, 2021. It is now read-only.

Commit f04dfa5

Browse files
committed
Now the render function can access to row data
1 parent 8c06e30 commit f04dfa5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/DatasourceUtils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default {
1313
return this.fetchFromObject(obj[column.substring(0, _index)], column.substr(_index + 1))
1414
}
1515
if (typeof render !== 'undefined') {
16-
return render(obj[column])
16+
return render(obj[column], obj)
1717
}
1818
return obj[column]
1919
},

0 commit comments

Comments
 (0)