Skip to content

Commit 000e5f2

Browse files
committed
fix(grid): correct action strip visibility logic for pinned rows
1 parent 88d839c commit 000e5f2

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
@@ -7836,7 +7836,7 @@ export abstract class IgxGridBaseDirective implements GridType,
78367836
const keepActionStrip =
78377837
!!context?.pinned &&
78387838
!!contextEl?.isConnected &&
7839-
!!context?.asMenuItems;
7839+
!context?.asMenuItems;
78407840

78417841
if (!keepActionStrip) {
78427842
if (this.actionStrip) {

0 commit comments

Comments
 (0)