diff --git a/frontend/src/modules/dashboard/Dashboard.tsx b/frontend/src/modules/dashboard/Dashboard.tsx index c0281a49be830a10b393dfb0335705545a70c471..7d2a62c87ded22a0f09570ca6b05309d74247840 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>