Skip to content

Commit

Permalink
Allow linked child transactions
Browse files Browse the repository at this point in the history
  • Loading branch information
joel-jeremy committed Oct 5, 2023
1 parent f6e2d3b commit 7c50201
Showing 1 changed file with 2 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

0 comments on commit 7c50201

Please sign in to comment.