From ee202bbd522de13b866eff8b05bed7a8099f1362 Mon Sep 17 00:00:00 2001 From: JR Date: Fri, 22 Nov 2019 11:34:15 +0000 Subject: [PATCH] Add container to arguments passed to `dataGetter` This PR aligns the `dataGetter` and `cellRenderer` function calls by ensuring the container property is passed. I would like to be able to access custom props that are passed to the container in the data getter function. Currently this is supported in the `cellRenderer` however we don't need the power of the that function (cell renderering for us is taken care of elsewhere). --- src/BaseTable.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BaseTable.tsx b/src/BaseTable.tsx index d540d731..2a3074e1 100644 --- a/src/BaseTable.tsx +++ b/src/BaseTable.tsx @@ -889,7 +889,7 @@ export default class BaseTable extends React.PureComponent, cellProps);