aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMathieu Suen <mathieu.suen@sonarsource.com>2022-03-15 15:49:01 +0100
committersonartech <sonartech@sonarsource.com>2022-03-18 20:02:58 +0000
commitcca0f3a1868b0b1c95d3fba0486cd8b81f696382 (patch)
tree92f375e0a2ecb6141981936082c8476c7fa64af3
parent9210942846e42ea46d3f830c7fbf0ad18f0c3285 (diff)
downloadsonarqube-cca0f3a1868b0b1c95d3fba0486cd8b81f696382.tar.gz
sonarqube-cca0f3a1868b0b1c95d3fba0486cd8b81f696382.zip
SONAR-16123 Adding OWASP Top 10 2021 version in security report
-rw-r--r--server/sonar-web/src/main/js/app/components/extensions/exposeLibraries.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/server/sonar-web/src/main/js/app/components/extensions/exposeLibraries.ts b/server/sonar-web/src/main/js/app/components/extensions/exposeLibraries.ts
index 68a380c179a..da109c61de6 100644
--- a/server/sonar-web/src/main/js/app/components/extensions/exposeLibraries.ts
+++ b/server/sonar-web/src/main/js/app/components/extensions/exposeLibraries.ts
@@ -104,6 +104,7 @@ import { sanitizeStringRestricted } from '../../../helpers/sanitize';
import {
getStandards,
renderCWECategory,
+ renderOwaspTop102021Category,
renderOwaspTop10Category,
renderSansTop25Category,
renderSonarSourceSecurityCategory
@@ -157,6 +158,7 @@ const exposeLibraries = () => {
getStandards,
renderCWECategory,
renderOwaspTop10Category,
+ renderOwaspTop102021Category,
renderSansTop25Category,
renderSonarSourceSecurityCategory,
getCodeUrl,