Skip to content

Commit bac8f13

Browse files
committed
fix(BaseExport): Fixed a lint warning.
1 parent 151072f commit bac8f13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/igniteui-angular/src/lib/services/exporter-common/base-export-service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1337,7 +1337,7 @@ export abstract class IgxBaseExporter {
13371337
}
13381338

13391339
const records = this.flatRecords.map(r => r.data);
1340-
let groupedRecords = this.groupByKeys(records, keys);
1340+
const groupedRecords = this.groupByKeys(records, keys);
13411341

13421342
this.createRowDimension(groupedRecords, keys, columnGroupParent);
13431343
}

0 commit comments

Comments
 (0)