Skip to content

Commit fd9696d

Browse files
committed
fix(state): save row pinning in hiergrid #7025
1 parent 3698a43 commit fd9696d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/igniteui-angular/src/lib/grids/state.directive.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ export class IgxGridStateDirective {
223223
let gridState = {} as IGridState;
224224
this.features.forEach(f => {
225225
f = f === 'inheritance' ? GridFeatures.ROW_ISLANDS : f;
226-
if (!(this.grid instanceof IgxGridComponent) && (f === FlatGridFeatures.GROUP_BY || f === GridFeatures.ROW_PINNING)) {
226+
if (!(this.grid instanceof IgxGridComponent) && f === FlatGridFeatures.GROUP_BY) {
227227
return;
228228
}
229229
const feature = this.getFeature(f);

0 commit comments

Comments
 (0)