diff --git a/packages/desktop-client/src/components/accounts/Account.jsx b/packages/desktop-client/src/components/accounts/Account.jsx index 4afd78dfe15b94861b3e2526903b505530727d07..6656be65b777168fc82e24d30067a8bb6d1b390a 100644 --- a/packages/desktop-client/src/components/accounts/Account.jsx +++ b/packages/desktop-client/src/components/accounts/Account.jsx @@ -1634,8 +1634,12 @@ export function Account() { return q => { q = q.filter({ $and: [{ '_account.closed': false }], - $or: [filterByAccount, filterByPayee], }); + if (params.id) { + q = q.filter({ + $or: [filterByAccount, filterByPayee], + }); + } return q.orderBy({ next_date: 'desc' }); }; }, [params.id]); diff --git a/upcoming-release-notes/2447.md b/upcoming-release-notes/2447.md new file mode 100644 index 0000000000000000000000000000000000000000..9f0e7bcd9de3a5f03a252e6385d51b0f38fa28ab --- /dev/null +++ b/upcoming-release-notes/2447.md @@ -0,0 +1,6 @@ +--- +category: Bugfix +authors: [psybers] +--- + +Show scheduled transactions when viewing "All accounts" \ No newline at end of file