Skip to content

Commit 9667aab

Browse files
authored
Merge branch '10.2.x' into mdragnev/fix-8426
2 parents 29927ac + 3b25190 commit 9667aab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/igniteui-angular/src/lib/grids/grid-navigation.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ export class IgxGridNavigationService {
223223
}
224224

225225
focusFirstCell(header = true) {
226-
if (this.grid.dataView.length && this.activeNode &&
226+
if ((header || this.grid.dataView.length) && this.activeNode &&
227227
(this.activeNode.row === -1 || this.activeNode.row === this.grid.dataView.length ||
228228
(!header && !this.grid.hasSummarizedColumns))) { return; }
229229

0 commit comments

Comments
 (0)