Skip to content

Commit

Permalink
fix(state): save row pinning in hiergrid #7025
Browse files Browse the repository at this point in the history
  • Loading branch information
hanastasov committed Jun 25, 2020
1 parent 3698a43 commit fd9696d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/igniteui-angular/src/lib/grids/state.directive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ export class IgxGridStateDirective {
let gridState = {} as IGridState;
this.features.forEach(f => {
f = f === 'inheritance' ? GridFeatures.ROW_ISLANDS : f;
if (!(this.grid instanceof IgxGridComponent) && (f === FlatGridFeatures.GROUP_BY || f === GridFeatures.ROW_PINNING)) {
if (!(this.grid instanceof IgxGridComponent) && f === FlatGridFeatures.GROUP_BY) {
return;
}
const feature = this.getFeature(f);
Expand Down

0 comments on commit fd9696d

Please sign in to comment.