mirror of
https://github.com/actualbudget/actual.git
synced 2026-04-30 10:14:53 -05:00
[Mobile] Fix category transactions screen not showing child transactions (#4998)
This commit is contained in:
committed by
GitHub
parent
7dd98c4f86
commit
3f4ddfdfe0
@@ -144,8 +144,7 @@ function TransactionListWithPreviews({
|
|||||||
});
|
});
|
||||||
|
|
||||||
const transactionsToDisplay = !isSearching
|
const transactionsToDisplay = !isSearching
|
||||||
? // Do not render child transactions in the list, unless searching
|
? previewTransactions.concat(transactions)
|
||||||
previewTransactions.concat(transactions.filter(t => !t.is_child))
|
|
||||||
: transactions;
|
: transactions;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|||||||
6
upcoming-release-notes/4998.md
Normal file
6
upcoming-release-notes/4998.md
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
category: Bugfix
|
||||||
|
authors: [joel-jeremy]
|
||||||
|
---
|
||||||
|
|
||||||
|
[Mobile] Fix category transactions screen not showing child transactions
|
||||||
Reference in New Issue
Block a user