Show scheduled transactions when viewing "All accounts" (#2447)

This commit is contained in:
Robert Dyer
2024-03-09 11:17:15 -06:00
committed by GitHub
parent 8827169bfa
commit 823b426952
2 changed files with 11 additions and 1 deletions

View File

@@ -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]);

View File

@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [psybers]
---
Show scheduled transactions when viewing "All accounts"