mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-11 20:44:32 -05:00
Show scheduled transactions when viewing "All accounts" (#2447)
This commit is contained in:
@@ -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]);
|
||||
|
||||
6
upcoming-release-notes/2447.md
Normal file
6
upcoming-release-notes/2447.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
category: Bugfix
|
||||
authors: [psybers]
|
||||
---
|
||||
|
||||
Show scheduled transactions when viewing "All accounts"
|
||||
Reference in New Issue
Block a user