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 {
375
375
const numValsAllowed =
376
376
this . props . aggregators [ this . props . aggregatorName ] ( [ ] ) ( ) . numInputs || 0 ;
377
377
378
- const aggregatorControls = this . props . aggregators [
378
+ const aggregatorCellOutlet = this . props . aggregators [
379
379
this . props . aggregatorName
380
- ] ( [ ] ) ( ) . controls ;
380
+ ] ( [ ] ) ( ) . outlet ;
381
381
382
382
const rendererName =
383
383
this . props . rendererName in this . props . renderers
@@ -472,7 +472,7 @@ class PivotTableUI extends React.PureComponent {
472
472
/> ,
473
473
i + 1 !== numValsAllowed ? < br key = { `br${ i } ` } /> : null ,
474
474
] ) }
475
- { aggregatorControls && aggregatorControls ( this . props . data ) }
475
+ { aggregatorCellOutlet && aggregatorCellOutlet ( this . props . data ) }
476
476
</ td >
477
477
) ;
478
478
You can’t perform that action at this time.
0 commit comments