diff --git a/frontend/src/shared/ui/components/KsDataGrid.vue b/frontend/src/shared/ui/components/KsDataGrid.vue index ac2f6b39..cebb3227 100644 --- a/frontend/src/shared/ui/components/KsDataGrid.vue +++ b/frontend/src/shared/ui/components/KsDataGrid.vue @@ -185,19 +185,6 @@ function redrawRows(): void { gridApi.value?.redrawRows() } -import type { NavigateToNextCellParams, CellPosition } from 'ag-grid-community' - - - -function navigateToNextCell(params: NavigateToNextCellParams): CellPosition | null { - const suggestedNextCell = params.nextCellPosition - - if (params.key === 'Enter' || String(params.key) === '13') { - return suggestedNextCell - } - - return suggestedNextCell -} defineExpose({ focusRow, redrawRows, gridApi }) @@ -213,7 +200,6 @@ defineExpose({ focusRow, redrawRows, gridApi }) :row-class-rules="rowClassRules" :enter-navigates-to-next-cell="true" :enter-navigates-to-next-cell-after-edit="true" - :navigate-to-next-cell="navigateToNextCell" :stop-editing-when-cells-lose-focus="true" :loading="props.loading" overlay-no-rows-template="
"