Skip to content

Commit ce0c854

Browse files
MKirovaMKirova
authored andcommitted
chore(*): Null check for activeRowIndex.
1 parent 9a7a2d2 commit ce0c854

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
@@ -4051,7 +4051,7 @@ export abstract class IgxGridBaseDirective implements GridType,
40514051

40524052

40534053
protected get activeRowIndex() {
4054-
return this.navigation.activeNode.row;
4054+
return this.navigation.activeNode?.row;
40554055
}
40564056

40574057
protected get hasCellsToMerge() {

0 commit comments

Comments
 (0)