diff --git a/packages/frontend-core/src/components/grid/stores/ui.js b/packages/frontend-core/src/components/grid/stores/ui.js index a52abd09d5..a465d6ed81 100644 --- a/packages/frontend-core/src/components/grid/stores/ui.js +++ b/packages/frontend-core/src/components/grid/stores/ui.js @@ -112,6 +112,9 @@ export const deriveStores = context => { // Get source and target row and column indices const sourceInfo = parseCellID(sourceCellId) const targetInfo = parseCellID(targetCellId) + if (sourceInfo.rowId === NewRowID) { + return [] + } // Row indices const sourceRowIndex = $rowLookupMap[sourceInfo.rowId].__idx