Skip to content
Snippets Groups Projects
Commit 05280804 authored by Tin Geber's avatar Tin Geber
Browse files

moving parnetheses out of the <a>

parent 8b7eac86
No related branches found
No related tags found
No related merge requests found
......@@ -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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment