Skip to content

Commit

Permalink
Allow linked child transactions (actualbudget#1759)
Browse files Browse the repository at this point in the history
* Allow linked child transactions

* Release notes
  • Loading branch information
joel-jeremy authored Oct 14, 2023
1 parent cf0c0c8 commit aab7cc1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ export default function ScheduleDetails({ modalProps, actions, id }) {
q('transactions')
.filter({ schedule: state.schedule.id })
.select('*')
.options({ splits: 'none' }),
.options({ splits: 'all' }),
data => dispatch({ type: 'set-transactions', transactions: data }),
);
return live.unsubscribe;
Expand Down Expand Up @@ -303,7 +303,7 @@ export default function ScheduleDetails({ modalProps, actions, id }) {
q('transactions')
.filter({ $and: filters })
.select('*')
.options({ splits: 'none' }),
.options({ splits: 'all' }),
data => dispatch({ type: 'set-transactions', transactions: data }),
);
unsubscribe = live.unsubscribe;
Expand Down
6 changes: 6 additions & 0 deletions upcoming-release-notes/1759.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
category: Enhancements
authors: [joel-jeremy]
---

Allow linked child transactions.

0 comments on commit aab7cc1

Please sign in to comment.