Skip to content

Commit d478f6f

Browse files
MKirovaMayaKirova
authored andcommitted
chore(*): Fix method call.
1 parent 8e998d6 commit d478f6f

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
@@ -7207,7 +7207,7 @@ export abstract class IgxGridBaseDirective extends DisplayDensityBase implements
72077207
// find next/prev record that is editable.
72087208
const nextRowIndex = previous ? this.findPrevEditableDataRowIndex(currentRowIndex) :
72097209
this.dataView.findIndex((rec, index) =>
7210-
index > resolvedIndex && this.isEditableDataRecordAtIndex(resolvedIndex));
7210+
index > resolvedIndex && this.isEditableDataRecordAtIndex(index));
72117211
const nextDataIndex = this.getDataIndex(nextRowIndex);
72127212
return nextDataIndex !== -1 ? nextDataIndex : currentRowIndex;
72137213
}

0 commit comments

Comments
 (0)