From 0db90e031a778072108f9c6af5e2e4eb08ed2610 Mon Sep 17 00:00:00 2001 From: Jono Wenger <jono@elixxir.io> Date: Wed, 20 Jul 2022 16:35:05 -0700 Subject: [PATCH] Fix link --- index.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.go b/index.go index d22dae8..dc16825 100644 --- a/index.go +++ b/index.go @@ -400,7 +400,7 @@ func page3(inputs Inputs) *gowd.Element { _, _ = autoCalcWarn.AddHTML(`<img src="img/Warning_icon.svg"/><strong>Warning:</strong> For team stake auto calculate to ensure your node gets into the active set, you must also nominate your own node. This is your responsibility as a node operator.`, nil) autoCalcWarn.Hide() autoCalcNote := bootstrap.NewElement("p", "note") - _, _ = autoCalcNote.AddHTML(`<img src="img/Note_icon.svg"/><strong>Note:</strong> For more information about team stake auto calculate, refer to <a onclick="window.nw.Shell.openExternal('https://xx.network/archive/mainnet-transition/')">ARTICLE</a>.`, nil) + _, _ = autoCalcNote.AddHTML(`<img src="img/Note_icon.svg"/><strong>Note:</strong> For more information about team stake auto calculate, refer to the <a onclick="window.nw.Shell.openExternal('https://xxnetwork.wiki/Team_Stake_Auto_Calculate')">Team Stake Auto Calculate</a> article.`, nil) autoCalcNote.Hide() autoCalcRadio.AddElement(autoCalcWarn) autoCalcRadio.AddElement(autoCalcNote) @@ -412,7 +412,7 @@ func page3(inputs Inputs) *gowd.Element { autoCalcWarnP := bootstrap.NewElement("p", "warn") _, _ = autoCalcWarnP.AddHTML(`<img src="img/Warning_icon.svg"/><strong>Warning:</strong> For team stake auto calculate to ensure your node gets into the active set, you must also nominate your own node. This is your responsibility as a node operator.`, nil) autoCalcNoteP := bootstrap.NewElement("p", "note") - _, _ = autoCalcNoteP.AddHTML(`<img src="img/Note_icon.svg"/><strong>Note:</strong> For more information about team stake auto calculate, refer to <a onclick="window.nw.Shell.openExternal('https://xx.network/archive/mainnet-transition/')">ARTICLE</a>.`, nil) + _, _ = autoCalcNoteP.AddHTML(`<img src="img/Note_icon.svg"/><strong>Note:</strong> For more information about team stake auto calculate, refer to the <a onclick="window.nw.Shell.openExternal('https://xxnetwork.wiki/Team_Stake_Auto_Calculate')">Team Stake Auto Calculate</a> article.`, nil) clearBtn := bootstrap.NewElement("img", "clearBtn") clearBtn.SetAttribute("src", "img/Clear_icon.svg") popupText.AddElement(clearBtn) -- GitLab