diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-12-31 19:52:10 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-12-31 19:52:10 +0530 |
commit | 5c8e6b6057c47b7ed348cac85abe803e59cffdad (patch) | |
tree | a44dc1c4bdd1ff23332c365995050ebc630bad5f /main.go | |
parent | 93d016203e148b7a4402ca3b3abcfecbb2dfcbdb (diff) |
fixed broken hyperlink
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -97,7 +97,7 @@ func onActivate(app *gtk.Application) { // do this after server starts on = true buttonSwitch.SetLabel("Stop") - statusLabel.SetMarkup(fmt.Sprintf("Serving\n%s\nOn <a href='http://localhost:%s'>http://localhost:%s</a>", dir, dir, port)) + statusLabel.SetMarkup(fmt.Sprintf("Serving\n%s\nOn <a href=\"http://localhost:%s\">http://localhost:%s</a>", dir, port, port)) browseButton.SetCanFocus(false) portInput.SetEditable(false) portInput.SetCanFocus(false) |