fix(@desktop/wallet): Clicking "Send" button on saved address does not add it into recipient input on SendModal
fixes #10685
This commit is contained in:
parent
cd4ddb5a06
commit
a6b65fcc13
|
@ -36,6 +36,8 @@ QtObject {
|
|||
property var disabledChainIdsFromList: []
|
||||
property var disabledChainIdsToList: []
|
||||
|
||||
property var assets: walletSectionAssets.assets
|
||||
|
||||
function addRemoveDisabledFromChain(chainID, isDisabled) {
|
||||
if(isDisabled) {
|
||||
if(!root.disabledChainIdsFromList.includes(chainID))
|
||||
|
|
|
@ -171,6 +171,7 @@ Loader {
|
|||
input.edit.readOnly: !root.interactive
|
||||
multiline: false
|
||||
input.edit.textFormat: TextEdit.RichText
|
||||
text: addressText
|
||||
|
||||
input.rightComponent: RowLayout {
|
||||
StatusButton {
|
||||
|
|
Loading…
Reference in New Issue