diff --git a/ee/app/assets/javascripts/security_dashboard/constants.js b/ee/app/assets/javascripts/security_dashboard/constants.js index e5cd07c6142f892f3a33d2a9d93a62dfeecee162..4d7d9a95f38cedafff409dd62ae11b9feab0f0a0 100644 --- a/ee/app/assets/javascripts/security_dashboard/constants.js +++ b/ee/app/assets/javascripts/security_dashboard/constants.js @@ -70,7 +70,7 @@ export const DOC_PATH_VULNERABILITY_DETAILS = helpPagePath( 'user/application_security/vulnerabilities/_index', ); export const DOC_PATH_VULNERABILITY_REPORT = helpPagePath( - 'user/application_security/vulnerability_report/_index', + 'user/application_security/vulnerabilities/false_positive_detection', ); export const DOC_PATH_SECURITY_CONFIGURATION = helpPagePath( 'user/application_security/detect/security_configuration', diff --git a/ee/spec/frontend/security_dashboard/components/shared/false_positive_detection_banner_spec.js b/ee/spec/frontend/security_dashboard/components/shared/false_positive_detection_banner_spec.js index 6d7e1b24f1359df54b4a1dad761976894e876ab0..643d243a77306dcd7107fc3477a4f41c9e5c3f94 100644 --- a/ee/spec/frontend/security_dashboard/components/shared/false_positive_detection_banner_spec.js +++ b/ee/spec/frontend/security_dashboard/components/shared/false_positive_detection_banner_spec.js @@ -101,7 +101,7 @@ describe('False positive detection banner component', () => { }); expect(findFpDetectionBanner().props('buttonText')).toBe('Learn more'); expect(findFpDetectionBanner().props('buttonLink')).toBe( - '/help/user/application_security/vulnerability_report/_index', + '/help/user/application_security/vulnerabilities/false_positive_detection', ); });