File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -375,9 +375,9 @@ class PivotTableUI extends React.PureComponent {
375375 const numValsAllowed =
376376 this . props . aggregators [ this . props . aggregatorName ] ( [ ] ) ( ) . numInputs || 0 ;
377377
378- const aggregatorControls = this . props . aggregators [
378+ const aggregatorCellOutlet = this . props . aggregators [
379379 this . props . aggregatorName
380- ] ( [ ] ) ( ) . controls ;
380+ ] ( [ ] ) ( ) . outlet ;
381381
382382 const rendererName =
383383 this . props . rendererName in this . props . renderers
@@ -472,7 +472,7 @@ class PivotTableUI extends React.PureComponent {
472472 /> ,
473473 i + 1 !== numValsAllowed ? < br key = { `br${ i } ` } /> : null ,
474474 ] ) }
475- { aggregatorControls && aggregatorControls ( this . props . data ) }
475+ { aggregatorCellOutlet && aggregatorCellOutlet ( this . props . data ) }
476476 </ td >
477477 ) ;
478478
You can’t perform that action at this time.
0 commit comments