Skip to content

Commit f401366

Browse files
authored
Merge pull request #707 from IgniteUI/mdd-fix-spelling
Update index.tsx
2 parents 33c935c + 6d35180 commit f401366

File tree

1 file changed

+3
-3
lines changed
  • samples/grids/pivot-grid/features/src

1 file changed

+3
-3
lines changed

samples/grids/pivot-grid/features/src/index.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,18 +66,18 @@ export default class Sample extends React.Component<any, any> {
6666
SumOfSale.key = "SUM";
6767
SumOfSale.label = "Sum of Sale";
6868
SumOfSale.aggregator = this.pivotDataFlatAggregateSumSale;
69-
SumOfSale.aggregatorName = PivotAggregatiotType.SUM;
69+
SumOfSale.aggregatorName = PivotAggregationType.SUM;
7070

7171
var MinOfSale = new IgrPivotAggregator();
7272
MinOfSale.key = "MIN";
7373
MinOfSale.label = "Minimum of Sale";
7474
MinOfSale.aggregator = this.pivotDataFlatAggregateMinSale;
75-
MinOfSale.aggregatorName = PivotAggregatiotType.MIN;
75+
MinOfSale.aggregatorName = PivotAggregationType.MIN;
7676

7777
var MaxOfSale = new IgrPivotAggregator();
7878
MaxOfSale.key = "MAX";
7979
MaxOfSale.label = "Maximum of Sale";
80-
MaxOfSale.aggregatorName = PivotAggregatiotType.MAX;
80+
MaxOfSale.aggregatorName = PivotAggregationType.MAX;
8181
MaxOfSale.aggregator = this.pivotDataFlatAggregateMaxSale;
8282

8383
igrPivotValue1.aggregateList = [SumOfSale,MinOfSale,MaxOfSale];

0 commit comments

Comments
 (0)