diff --git a/frontend/src/shared/ui/components/KsDataGrid.vue b/frontend/src/shared/ui/components/KsDataGrid.vue index f9382add..ba1283f6 100644 --- a/frontend/src/shared/ui/components/KsDataGrid.vue +++ b/frontend/src/shared/ui/components/KsDataGrid.vue @@ -215,19 +215,8 @@ function navigateToNextCell(params: NavigateToNextCellParams): CellPosition | nu column: nextCol, rowPinned: previousCell.rowPinned } - } else { - const nextRowIndex = previousCell.rowIndex + 1 - const firstCol = editableCols[0] - const colId = firstCol.getColId() - setTimeout(() => { - params.api.startEditingCell({ rowIndex: nextRowIndex, colKey: colId }) - }, 30) - return { - rowIndex: nextRowIndex, - column: firstCol, - rowPinned: previousCell.rowPinned - } } + return null } }