1
0
Fork 0
mirror of synced 2024-07-06 15:00:49 +12:00

Fix losing cell focus when another user makes changes while you're adding a row

This commit is contained in:
Andrew Kingston 2023-06-02 08:58:32 +01:00
parent b4def3675a
commit dab3263569

View file

@ -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
}