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:
Khushboo Mehta 2023-05-16 11:47:18 +02:00 committed by Khushboo-dev-cpp
parent cd4ddb5a06
commit a6b65fcc13
2 changed files with 3 additions and 0 deletions

View File

@ -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))

View File

@ -171,6 +171,7 @@ Loader {
input.edit.readOnly: !root.interactive
multiline: false
input.edit.textFormat: TextEdit.RichText
text: addressText
input.rightComponent: RowLayout {
StatusButton {