From 0c5e7bb81a37689d7a3a430f0482a7e42a98dbea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Ricks?= Date: Wed, 15 Jan 2025 14:33:01 +0100 Subject: [PATCH] Fix: Fix link to the manual in feed sync notification 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. --- .../FeedSyncNotification/FeedSyncNotification.jsx | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/src/web/components/notification/FeedSyncNotification/FeedSyncNotification.jsx b/src/web/components/notification/FeedSyncNotification/FeedSyncNotification.jsx index 390e7ca713..4358f9a780 100644 --- a/src/web/components/notification/FeedSyncNotification/FeedSyncNotification.jsx +++ b/src/web/components/notification/FeedSyncNotification/FeedSyncNotification.jsx @@ -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, @@ -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`, )}{' '} - - {_('Documentation')}. - + {_('Documentation')} + + .

)}