fix(dashboard): remove muted findings on compliance page (#7683)

This commit is contained in:
Pedro Martín
2025-05-07 19:52:14 +02:00
committed by GitHub
parent bfa16607b0
commit 1017510a67
2 changed files with 4 additions and 0 deletions

View File

@@ -431,6 +431,9 @@ def display_data(
)
df = data.copy()
# Remove Muted rows
if "MUTED" in df.columns:
df = df[df["MUTED"] == "False"]
df = df.groupby(["STATUS"]).size().reset_index(name="counts")
df = df.sort_values(by=["counts"], ascending=False)

View File

@@ -65,6 +65,7 @@ All notable changes to the **Prowler SDK** are documented in this file.
- Remove empty files in Prowler [(#7627)](https://github.com/prowler-cloud/prowler/pull/7627)
- Ensure that ContentType in upload_file matches the uploaded files format [(#7635)](https://github.com/prowler-cloud/prowler/pull/7635)
- Fix incorrect check inside 4.4.1 requirement for Azure CIS 2.0 [(#7656)](https://github.com/prowler-cloud/prowler/pull/7656).
- Remove muted findings on compliance page from Prowler Dashboard [(#7683)](https://github.com/prowler-cloud/prowler/pull/7683).
---