We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bdbd68 commit b67a7abCopy full SHA for b67a7ab
src/components/transactions-list.js
@@ -75,7 +75,7 @@ const initialState = {
75
let name = cnt?.info?.name
76
let addr = tx?.vout?.[0]?.scriptPubKey?.addresses?.[0]
77
78
- if (tx?.dir !== 'sent') {
+ if (!['sent', 'outgoing'].includes(tx?.dir)) {
79
addr = tx?.vin?.[0]?.addr
80
}
81
if (tx.time) {
@@ -100,7 +100,7 @@ const initialState = {
100
let itemTitle = `Sent on`
101
let itemDir = `To <strong>${name}</strong>`
102
103
104
itemTitle = `Received on`
105
itemDir = `From <strong>${name}</strong>`
106
itemCtrls = html`<aside class="inline row succ">
0 commit comments