Skip to content

Commit b65d7af

Browse files
committed
Change: Update links to the manual for report config and audit report pages
Link to more specific section in manual for report config and audit report pages.
1 parent daf0eb1 commit b65d7af

File tree

5 files changed

+22
-15
lines changed

5 files changed

+22
-15
lines changed

src/web/pages/reportconfigs/__tests__/listpage.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ describe('ReportConfigsPage tests', () => {
200200
expect(icons[0]).toHaveAttribute('title', 'Help: Report Configs');
201201
expect(links[0]).toHaveAttribute(
202202
'href',
203-
'test/en/reports.html#managing-report-configs',
203+
'test/en/reports.html#customizing-report-formats-with-report-configurations',
204204
);
205205
});
206206

src/web/pages/reportconfigs/detailspage.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ const ToolBarIcons = withCapabilities(
6060
<Divider margin="10px">
6161
<IconDivider>
6262
<ManualIcon
63-
anchor="managing-report-configs"
63+
anchor="customizing-report-formats-with-report-configurations"
6464
page="reports"
6565
title={_('Help: Report Configs')}
6666
/>

src/web/pages/reportconfigs/listpage.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const ToolBarIcons = ({onReportConfigCreateClick}) => {
3030
return (
3131
<IconDivider>
3232
<ManualIcon
33-
anchor="managing-report-configs"
33+
anchor="customizing-report-formats-with-report-configurations"
3434
page="reports"
3535
title={_('Help: Report Configs')}
3636
/>

src/web/pages/reports/auditreportslistpage.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ import {
2626
} from 'web/store/entities/auditreports';
2727
import PropTypes from 'web/utils/proptypes';
2828

29-
3029
import AuditReportsDashboard, {
3130
AUDIT_REPORTS_DASHBOARD_ID,
3231
} from './auditdashboard';
@@ -38,6 +37,7 @@ const ToolBarIcons = () => {
3837
return (
3938
<IconDivider>
4039
<ManualIcon
40+
anchor="using-and-managing-audit-reports"
4141
page="compliance-and-special-scans"
4242
title={_('Help: Audit Reports')}
4343
/>

src/web/pages/reports/details/toolbaricons.jsx

+18-11
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
* SPDX-License-Identifier: AGPL-3.0-or-later
44
*/
55

6-
7-
86
import _ from 'gmp/locale';
97
import {isDefined} from 'gmp/utils/identity';
108
import React from 'react';
@@ -46,28 +44,37 @@ const ToolBarIcons = ({
4644
}) => (
4745
<Divider margin="15px">
4846
<IconDivider>
49-
<ManualIcon
50-
anchor="reading-a-report"
51-
page="reports"
52-
title={_('Help: Reading Reports')}
53-
/>
5447
{audit ? (
55-
<ListIcon page="auditreports" title={_('Audit Reports List')} />
48+
<>
49+
<ManualIcon
50+
anchor="using-and-managing-audit-reports"
51+
page="compliance-and-special-scans"
52+
title={_('Help: Audit Reports')}
53+
/>
54+
<ListIcon page="auditreports" title={_('Audit Reports List')} />
55+
</>
5656
) : (
57-
<ListIcon page="reports" title={_('Reports List')} />
57+
<>
58+
<ManualIcon
59+
anchor="reading-a-report"
60+
page="reports"
61+
title={_('Help: Reading Reports')}
62+
/>
63+
<ListIcon page="reports" title={_('Reports List')} />
64+
</>
5865
)}
5966
</IconDivider>
6067
{!isLoading && (
6168
<React.Fragment>
6269
<IconDivider>
6370
{audit ? (
6471
<AddToAssetsIcon
65-
title= {_('Add to Assets with QoD >= 70%')}
72+
title={_('Add to Assets with QoD >= 70%')}
6673
onClick={onAddToAssetsClick}
6774
/>
6875
) : (
6976
<AddToAssetsIcon
70-
title= {_('Add to Assets with QoD >= 70% and Overrides enabled')}
77+
title={_('Add to Assets with QoD >= 70% and Overrides enabled')}
7178
onClick={onAddToAssetsClick}
7279
/>
7380
)}

0 commit comments

Comments
 (0)