Commit 65c792cf authored by Mark Florian's avatar Mark Florian

Fix dismissal behavior of secret detection vulns

It seems that no vulnerabilities have the type `secret_scanning`
anymore, so the secret detection action was not being dispatched. This
meant that the real-time update of the vulnerability in the UI wasn't
happening, i.e., striking-through when dismissed, and removing the
strike-through when undoing the dismissal.
parent f1020edd
...@@ -5,7 +5,7 @@ export const updateIssueActionsMap = { ...@@ -5,7 +5,7 @@ export const updateIssueActionsMap = {
dependency_scanning: 'updateDependencyScanningIssue', dependency_scanning: 'updateDependencyScanningIssue',
container_scanning: 'updateContainerScanningIssue', container_scanning: 'updateContainerScanningIssue',
dast: 'updateDastIssue', dast: 'updateDastIssue',
secret_scanning: 'secretScanning/updateSecretScanningIssue', secret_detection: 'secretScanning/updateSecretScanningIssue',
coverage_fuzzing: 'updateCoverageFuzzingIssue', coverage_fuzzing: 'updateCoverageFuzzingIssue',
}; };
......
---
title: Fix real-time update of dismissal status of vulnerabilities found by Secret Detection
merge_request: 47307
author:
type: fixed
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment