diff --git a/packages/desktop-client/src/components/accounts/Account.js b/packages/desktop-client/src/components/accounts/Account.js index e180b5fa951daef9e79117401e9a4ff880497d9e..b7e0361a19de83f0903b28d74f1dda52eeaa7fa3 100644 --- a/packages/desktop-client/src/components/accounts/Account.js +++ b/packages/desktop-client/src/components/accounts/Account.js @@ -1431,7 +1431,15 @@ class AccountInternal extends React.PureComponent { value = !!transactions.find(t => !t.cleared); } + const idSet = new Set(ids); + transactions.forEach(trans => { + if (!idSet.has(trans.id)) { + // Skip transactions which aren't actually selected, since the query + // above also retrieves the siblings & parent of any selected splits. + return; + } + let { diff } = updateTransaction(transactions, { ...trans, [name]: value