Fix losing cell focus when another user makes changes while you're adding a row
This commit is contained in:
parent
b4def3675a
commit
dab3263569
|
@ -436,6 +436,9 @@ export const deriveStores = context => {
|
||||||
|
|
||||||
// Checks if we have a row with a certain ID
|
// Checks if we have a row with a certain ID
|
||||||
const hasRow = id => {
|
const hasRow = id => {
|
||||||
|
if (id === NewRowID) {
|
||||||
|
return true
|
||||||
|
}
|
||||||
return get(rowLookupMap)[id] != null
|
return get(rowLookupMap)[id] != null
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue