From 052808049dfd8803b2aa0879eaeb6876755514e3 Mon Sep 17 00:00:00 2001
From: Tin Geber <tin@greenhost.nl>
Date: Mon, 29 May 2023 21:01:38 +0200
Subject: [PATCH] moving parnetheses out of the <a>

---
 frontend/src/modules/dashboard/Dashboard.tsx | 15 ++++++++++++---
 1 file changed, 12 insertions(+), 3 deletions(-)

diff --git a/frontend/src/modules/dashboard/Dashboard.tsx b/frontend/src/modules/dashboard/Dashboard.tsx
index c0281a49..7d2a62c8 100644
--- a/frontend/src/modules/dashboard/Dashboard.tsx
+++ b/frontend/src/modules/dashboard/Dashboard.tsx
@@ -44,9 +44,18 @@ export const Dashboard: React.FC = () => {
           <div className="system-status flex items-center text-sm font-medium text-gray-500 gap-1">
             <p className="">Version {systemInfo.version} </p>
             <span>{versionStatusIcon}</span>
-            <a className="hover:text-primary-500 underline" href={systemInfo.releaseNotesUrl}>
-              (Changelog <NewspaperIcon className="h-4 w-4 inline" />)
-            </a>
+            <span>
+              (
+              <a
+                className="hover:text-primary-500 underline"
+                href={systemInfo.releaseNotesUrl}
+                target="_blank"
+                rel="noreferrer noopener"
+              >
+                Changelog <NewspaperIcon className="h-4 w-4 inline" />
+              </a>{' '}
+              )
+            </span>
           </div>
         </div>
       </div>
-- 
GitLab