Skip to content

Commit 1216b41

Browse files
committed
Rename controls to outlet
1 parent 8c7df37 commit 1216b41

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/PivotTableUI.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)