Skip to content

Commit

Permalink
fix(wallet) wrong properties referenced in TransactionDetailView
Browse files Browse the repository at this point in the history
Updates: #13663
  • Loading branch information
stefandunca committed Mar 20, 2024
1 parent caf0c78 commit bd8492f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/app/AppLayouts/Wallet/views/TransactionDetailView.qml
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ Item {
width: parent.width
title: d.transactionType === Constants.TransactionType.Swap || d.transactionType === Constants.TransactionType.Bridge ?
qsTr("In") : qsTr("From")
addresses: d.isTransactionValid && d.reEvaluateSender? [d.transaction.from] : []
addresses: d.isTransactionValid && d.reEvaluateSender? [d.transaction.sender] : []
contactsStore: root.contactsStore
rootStore: WalletStores.RootStore
onButtonClicked: {
Expand Down Expand Up @@ -342,7 +342,7 @@ Item {
TransactionAddressTile {
width: parent.width
title: qsTr("To")
addresses: d.isTransactionValid && visible && d.reEvaluateRecipient? [d.transaction.to] : []
addresses: d.isTransactionValid && visible && d.reEvaluateRecipient? [d.transaction.recipient] : []
contactsStore: root.contactsStore
rootStore: WalletStores.RootStore
onButtonClicked: addressMenu.openReceiverMenu(this, addresses[0], [d.networkShortName])
Expand Down

0 comments on commit bd8492f

Please sign in to comment.