Skip to content

Commit 04b444d

Browse files
MKirovaMKirova
authored andcommitted
chore(*): Fix offset calcs.
1 parent 7d30464 commit 04b444d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/igniteui-angular/src/lib/grids/columns/column.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1620,7 +1620,7 @@ export class IgxColumnComponent implements AfterContentInit, OnDestroy, ColumnTy
16201620
/** @hidden @internal **/
16211621
public get rightPinnedOffset(): string {
16221622
return this.pinned && this.pinningPosition === ColumnPinningPosition.End ?
1623-
- this.grid.pinnedEndWidth - this.grid.pinnedStartWidth - this.grid.headerFeaturesWidth + 'px' :
1623+
- this.grid.pinnedEndWidth - this.grid.pinnedStartWidth + 'px' :
16241624
null;
16251625
}
16261626

0 commit comments

Comments
 (0)