diff --git a/packages/frontend-core/src/components/grid/stores/rows.js b/packages/frontend-core/src/components/grid/stores/rows.js index c731d4ec44..198c05025c 100644 --- a/packages/frontend-core/src/components/grid/stores/rows.js +++ b/packages/frontend-core/src/components/grid/stores/rows.js @@ -436,6 +436,9 @@ export const deriveStores = context => { // Checks if we have a row with a certain ID const hasRow = id => { + if (id === NewRowID) { + return true + } return get(rowLookupMap)[id] != null }