1
0
Fork 0
mirror of synced 2024-09-20 11:27:56 +12:00

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

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) {