Skip to content

Commit cf914d6

Browse files
authored
Merge branch '15.1.x' into iminchev/fix-header-autosize-15.1.x
2 parents 95efc8b + 544af5b commit cf914d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/igniteui-angular/src/lib/grids/pivot-grid/pivot-row-dimension-content.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ export class IgxPivotRowDimensionContentComponent extends IgxGridHeaderRowCompon
146146

147147
protected extractFromDimension(dim: IPivotDimension, rowData: IPivotGridGroupRecord) {
148148
const field = dim.memberName;
149-
const header = rowData.dimensionValues.get(field);
149+
const header = rowData?.dimensionValues.get(field);
150150
const col = this._createColComponent(field, header, dim);
151151
return col;
152152
}

0 commit comments

Comments
 (0)