mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-10 13:46:35 +00:00
fix(wallet) wrong properties referenced in TransactionDetailView
Updates: #13663
This commit is contained in:
parent
1a0900ae91
commit
7827fd1a86
@ -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: {
|
||||
@ -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])
|
||||
|
Loading…
x
Reference in New Issue
Block a user