Skip to content

Commit d4e57a3

Browse files
MKirovaMKirova
authored andcommitted
fix(igxGrid): Merge user-set pin config with default one.
1 parent 742beaa commit d4e57a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/igniteui-angular/src/lib/grids/grid-base.directive.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2321,7 +2321,7 @@ export abstract class IgxGridBaseDirective implements GridType,
23212321
if (value !== this._pinning) {
23222322
this.resetCaches();
23232323
}
2324-
this._pinning = value;
2324+
this._pinning = Object.assign({}, this._pinning, value);
23252325
}
23262326

23272327
/**

0 commit comments

Comments
 (0)