diff --git a/packages/desktop-client/src/components/accounts/Account.js b/packages/desktop-client/src/components/accounts/Account.js index 9264f221ccaaa9d921c851e56e1e3f2a97bcd5ea..018e1b0e972ff66bd4d52d3d0238794b37859695 100644 --- a/packages/desktop-client/src/components/accounts/Account.js +++ b/packages/desktop-client/src/components/accounts/Account.js @@ -1413,12 +1413,12 @@ class AccountInternal extends React.PureComponent { value = !!transactions.find(t => !t.cleared); } - let idSet = new Set(ids); + 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 of any selected splits. + // Skip transactions which aren't actually selected, since the query + // above also retrieves the siblings & parent of any selected splits. return; }