|
|
@ -98,7 +98,7 @@ const allActivity = createSelector( |
|
|
|
invoicesSelector, |
|
|
|
transactionsSelector, |
|
|
|
(searchText, payments, invoices, transactions) => { |
|
|
|
const searchedArr = [...payments, ...invoices, ...transactions].filter(tx => { |
|
|
|
const searchedArr = [...payments, ...invoices, ...transactions].filter((tx) => { |
|
|
|
if ((tx.tx_hash && tx.tx_hash.includes(searchText)) || |
|
|
|
(tx.payment_hash && tx.payment_hash.includes(searchText)) || |
|
|
|
(tx.r_hash && tx.r_hash.includes(searchText))) { |
|
|
|