Skip to content

Commit

Permalink
fix(@wallet): toast ui url add extra space
Browse files Browse the repository at this point in the history
  • Loading branch information
alaibe authored and jrainville committed Nov 17, 2023
1 parent 6101bdd commit 8e74499
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/StatusQ/src/StatusQ/Components/StatusToastMessage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ Control {
height: visible ? implicitHeight : 0
font.pixelSize: 13
hoveredLinkColor: Theme.palette.primaryColor1
text: "<p><a style=\"text-decoration:none\" href=\'" + root.linkUrl + " \'>" + root.secondaryText + "</a></p>"
text: "<p><a style='text-decoration:none' href='%1'>%2</a></p>".arg(root.linkUrl).arg(root.secondaryText)
onLinkActivated: {
root.linkActivated(link);
}
Expand Down

0 comments on commit 8e74499

Please sign in to comment.