Fix error when another user updates a row not inside our grid

This commit is contained in:
Andrew Kingston 2024-07-16 14:10:19 +01:00
parent d6a10e2dab
commit 2338783f22
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -371,7 +371,7 @@ export const createActions = context => {
// Get index of row to check if it exists
const $rows = get(rows)
const $rowLookupMap = get(rowLookupMap)
const index = $rowLookupMap[id].__idx
const index = $rowLookupMap[id]?.__idx
// Process as either an update, addition or deletion
if (row) {