Skip to content

Commit

Permalink
fix(html): add correct color for manual findings (#4184)
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrooot committed Jun 4, 2024
1 parent 070edc1 commit dc510e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prowler/lib/outputs/html/html.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit dc510e0

Please sign in to comment.