From dc510e0683bf4a5345a7eda49012dd3fa89edc7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pedro=20Mart=C3=ADn?= Date: Tue, 4 Jun 2024 17:57:22 +0200 Subject: [PATCH] fix(html): add correct color for manual findings (#4184) --- prowler/lib/outputs/html/html.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prowler/lib/outputs/html/html.py b/prowler/lib/outputs/html/html.py index 9106ce0f78..a6f9738580 100644 --- a/prowler/lib/outputs/html/html.py +++ b/prowler/lib/outputs/html/html.py @@ -136,7 +136,7 @@ def fill_html(file_descriptor, finding): try: row_class = "p-3 mb-2 bg-success-custom" finding.status = finding.status.split(".")[0] - if finding.status == "INFO": + if finding.status == "MANUAL": row_class = "table-info" elif finding.status == "FAIL": row_class = "table-danger"