This commit is contained in:
Andrei Smirnov 2021-07-02 11:55:31 +03:00 committed by Iuri Matias
parent aa4bdaf910
commit 5d837c450c
2 changed files with 5 additions and 6 deletions

View File

@ -512,6 +512,7 @@ property Component sendTransactionModalComponent: SignTransactionModal {}
anchors.top: parent.top anchors.top: parent.top
anchors.topMargin: browserHeader.height anchors.topMargin: browserHeader.height
focus: true focus: true
url: "https://dap.ps"
webChannel: channel webChannel: channel
onLinkHovered: function(hoveredUrl) { onLinkHovered: function(hoveredUrl) {
if (hoveredUrl === "") if (hoveredUrl === "")

View File

@ -228,7 +228,7 @@ Item {
//% "Wallet address" //% "Wallet address"
label: qsTrId("wallet-address") label: qsTrId("wallet-address")
text: walletModel.getDefaultAddress() text: walletModel.getDefaultAddress()
textToCopy: profileModel.profile.address textToCopy: text
anchors.left: parent.left anchors.left: parent.left
anchors.leftMargin: 24 anchors.leftMargin: 24
anchors.top: ensUsername.bottom anchors.top: ensUsername.bottom
@ -294,11 +294,9 @@ Item {
Image { Image {
id: image1 id: image1
height: 50 height: 50
width: 50 width: height
sourceSize.width: width source: Style.current.name === Constants.lightThemeName ? "../../../../../shared/img/status-logo-light-theme.svg" : "../../../../../shared/img/status-logo.svg"
sourceSize.height: height sourceSize: Qt.size(width, height)
fillMode: Image.PreserveAspectFit
source: "../../../../../shared/img/status-logo.png"
} }
StyledText { StyledText {