From 19a735aafecfd5d3fed09c29a505d1c411c2da73 Mon Sep 17 00:00:00 2001 From: sumit-tft <70506234+sumit-tft@users.noreply.github.com> Date: Fri, 1 Aug 2025 16:17:17 +0530 Subject: [PATCH] =?UTF-8?q?chore(ui):=20remove=20misconfigurations=20from?= =?UTF-8?q?=20Top=20Failed=20Findings=20in=20the=20s=E2=80=A6=20(#8426)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ui/CHANGELOG.md | 1 + ui/lib/menu-list.ts | 6 ------ 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/ui/CHANGELOG.md b/ui/CHANGELOG.md index b99eabf12b..b419cec6c5 100644 --- a/ui/CHANGELOG.md +++ b/ui/CHANGELOG.md @@ -13,6 +13,7 @@ All notable changes to the **Prowler UI** are documented in this file. - Rename `Memberships` to `Organization` in the sidebar [(#8415)](https://github.com/prowler-cloud/prowler/pull/8415) - Removed `Browse all resources` from the sidebar, sidebar now shows a single `Resources` entry [(#8418)](https://github.com/prowler-cloud/prowler/pull/8418) +- Removed `Misconfigurations` from the `Top Failed Findings` section in the sidebar [(#8426)](https://github.com/prowler-cloud/prowler/pull/8426) ___ ## [v1.9.3] (Prowler v5.9.3) diff --git a/ui/lib/menu-list.ts b/ui/lib/menu-list.ts index 3b0b54ef4c..237540ff2d 100644 --- a/ui/lib/menu-list.ts +++ b/ui/lib/menu-list.ts @@ -1,7 +1,6 @@ "use client"; import { - AlertCircle, Bookmark, CloudCog, Cog, @@ -79,11 +78,6 @@ export const getMenuList = (pathname: string): GroupProps[] => { label: "Top failed findings", icon: Bookmark, submenus: [ - { - href: "/findings?filter[status__in]=FAIL&sort=severity,-inserted_at", - label: "Misconfigurations", - icon: AlertCircle, - }, { href: "/findings?filter[status__in]=FAIL&filter[severity__in]=critical%2Chigh%2Cmedium&filter[provider_type__in]=aws%2Cazure%2Cgcp%2Ckubernetes&filter[service__in]=iam%2Crbac&sort=-inserted_at", label: "IAM Issues",