Skip to content

Commit

Permalink
Fix Tab behavior from cell-under-edit
Browse files Browse the repository at this point in the history
  • Loading branch information
msmithNI committed Dec 16, 2024
1 parent 33c1264 commit db16478
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -919,7 +919,7 @@ implements Subscriber {
}
}
if (setRowFocus && this.hasRowOrCellFocusType()) {
if (columnIndex >= 0) {
if (columnIndex >= 0 && this.columnIndex !== columnIndex) {
this.setCellFocusState(
columnIndex,
row.resolvedRowIndex!,
Expand Down

0 comments on commit db16478

Please sign in to comment.