From fd657978ca698052bd5ff96750bbba148c7bbfa2 Mon Sep 17 00:00:00 2001 From: Kevin F Date: Mon, 11 Mar 2024 21:32:01 +0100 Subject: [PATCH] Fix version link to open in new tab :bug: #404 --- src/Client/Views/SidebarView.fs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Client/Views/SidebarView.fs b/src/Client/Views/SidebarView.fs index 3784a57b..68f7554a 100644 --- a/src/Client/Views/SidebarView.fs +++ b/src/Client/Views/SidebarView.fs @@ -73,7 +73,7 @@ let private footer (model:Model) = div [Style [Color "grey"; Position PositionOptions.Sticky; Width "inherit"; Bottom "0"; TextAlign TextAlignOptions.Center ]] [ div [] [ str "Swate Release Version " - a [Href "https://github.com/nfdi4plants/Swate/releases"] [str model.PersistentStorageState.AppVersion] + a [Href "https://github.com/nfdi4plants/Swate/releases"; HTMLAttr.Target "_Blank"] [str model.PersistentStorageState.AppVersion] str " Host " Html.span [prop.style [style.color "#4fb3d9"]; prop.text (sprintf "%O" model.PersistentStorageState.Host)] ]