Skip to content

Commit

Permalink
adding homeHistoryTickets to viewableTransactions (decred#1179)
Browse files Browse the repository at this point in the history
  • Loading branch information
vctt94 authored and alexlyp committed Feb 19, 2018
1 parent 7ab5de4 commit 240cc75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/selectors.js
Original file line number Diff line number Diff line change
Expand Up @@ -357,8 +357,8 @@ export const ticketDataChart = createSelector(
);

export const viewableTransactions = createSelector(
[transactions, homeHistoryTransactions],
(transactions, homeHistoryTransactions) => [...transactions, ...homeHistoryTransactions]
[transactions, homeHistoryTransactions, homeHistoryTickets],
(transactions, homeTransactions, homeHistoryTickets) => [...transactions, ...homeTransactions, ...homeHistoryTickets]
);
export const viewedTransaction = createSelector(
[viewableTransactions, (state, { match: { params: { txHash }}}) => txHash],
Expand Down

0 comments on commit 240cc75

Please sign in to comment.