chore: Refresh pre selected account property (#15503)
This commit is contained in:
parent
bc736257d1
commit
b4059b1f7d
|
@ -58,7 +58,10 @@ StatusDialog {
|
|||
standardButtons: StandardButton.Ok
|
||||
}
|
||||
|
||||
readonly property var selectedAccount: selectedSenderAccountEntry.item ?? ModelUtils.get(store.accounts, 0)
|
||||
readonly property var selectedAccount: {
|
||||
selectedSenderAccountEntry.value // Item changed is not triggered when the value is changed
|
||||
return selectedSenderAccountEntry.item ?? ModelUtils.get(store.accounts, 0)
|
||||
}
|
||||
|
||||
property var sendTransaction: function() {
|
||||
d.isPendingTx = true
|
||||
|
|
Loading…
Reference in New Issue