Skip to content

Commit

Permalink
update vote info link
Browse files Browse the repository at this point in the history
  • Loading branch information
smk762 committed Jun 13, 2024
1 parent 70c4d1c commit 900b698
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion atomic_defi_design/Dex/Wallet/Main.qml
Original file line number Diff line number Diff line change
Expand Up @@ -675,7 +675,10 @@ Item
content.anchors.leftMargin: enabled ? 23 : 48
content.anchors.rightMargin: 23

onClicked: Qt.openUrlExternally("https://vote.komodoplatform.com/")
onClicked: {
let url = "https://vote.komodoplatform.com/" + api_wallet_page.ticker.toLowerCase();
Qt.openUrlExternally(url);
}

Row
{
Expand Down

0 comments on commit 900b698

Please sign in to comment.