We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 916bad1 commit 989de41Copy full SHA for 989de41
projects/igniteui-angular/grids/core/src/services/csv/char-separated-value-data.ts
@@ -55,7 +55,7 @@ export class CharSeparatedValueData {
55
/* When column groups are present, always use the field as it indicates the group the column belongs to.
56
* Otherwise, in PivotGrid scenarios we can end up with many duplicated column names without a hint what they represent.
57
*/
58
- columns.map(c => c.columnGroupParent ? c.field : c.header ?? c.field) :
+ columns.map(c => c.header ?? c.field) :
59
keys;
60
61
this._headerRecord = this.processHeaderRecord(headers, this._data.length);
0 commit comments