Skip to content

Commit

Permalink
Fix: Fix link to the manual in feed sync notification
Browse files Browse the repository at this point in the history
Don't hardcode the link to the manual in the feed sync notification
component. The old link is already broken because it points to an old
unavailable manual.
  • Loading branch information
bjoernricks committed Jan 16, 2025
1 parent a330a2f commit 0c5e7bb
Showing 1 changed file with 8 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/

import styled from 'styled-components';
import BlankLink from 'web/components/link/blanklink';
import ManualLink from 'web/components/link/manuallink';
import {
useFeedSyncStatus,
useFeedSyncDialog,
Expand Down Expand Up @@ -51,13 +51,14 @@ const FeedSyncNotification = () => {
{_(
`Please wait while the feed is syncing. Scans are not available during this time. For more information, visit the`,
)}{' '}
<BlankLink
to={
'https://docs.greenbone.net/GSM-Manual/gos-21.04/en/scanning.html?highlight=scan'
}
<ManualLink
highlight="scan"
page="scanning"
title={_('Documentation')}
>
{_('Documentation')}.
</BlankLink>
{_('Documentation')}
</ManualLink>
.
</p>
)}
</InfoPanel>
Expand Down

0 comments on commit 0c5e7bb

Please sign in to comment.