Skip to content

Commit a87714f

Browse files
committed
fix(grid): correct action strip visibility logic for pinned rows
1 parent 5296104 commit a87714f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7797,7 +7797,7 @@ export abstract class IgxGridBaseDirective implements GridType,
77977797
const keepActionStrip =
77987798
!!context?.pinned &&
77997799
!!contextEl?.isConnected &&
7800-
!!context?.asMenuItems;
7800+
!context?.asMenuItems;
78017801

78027802
if (!keepActionStrip) {
78037803
if (this.actionStrip) {

0 commit comments

Comments
 (0)