From 533a0ab7e21338e67a233d13766cb7ef60e3a0a2 Mon Sep 17 00:00:00 2001 From: Nate Rosandich Date: Wed, 17 Dec 2025 17:13:10 +1300 Subject: [PATCH] Update path to point to false_positive_detection docs Changelog: changed EE: true --- ee/app/assets/javascripts/security_dashboard/constants.js | 2 +- .../components/shared/false_positive_detection_banner_spec.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ee/app/assets/javascripts/security_dashboard/constants.js b/ee/app/assets/javascripts/security_dashboard/constants.js index e5cd07c6142f89..4d7d9a95f38ced 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 6d7e1b24f1359d..643d243a77306d 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', ); }); -- GitLab