From 02b416b4f897b523dee13755dba5fc42c71e746a Mon Sep 17 00:00:00 2001 From: sumit-tft <70506234+sumit-tft@users.noreply.github.com> Date: Thu, 31 Jul 2025 19:43:30 +0530 Subject: [PATCH] chore(ui): remove browse all resources from the sidebar (#8418) --- ui/CHANGELOG.md | 1 + ui/lib/menu-list.ts | 11 +---------- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/ui/CHANGELOG.md b/ui/CHANGELOG.md index e86690f7f7..b99eabf12b 100644 --- a/ui/CHANGELOG.md +++ b/ui/CHANGELOG.md @@ -12,6 +12,7 @@ All notable changes to the **Prowler UI** are documented in this file. ### 🔄 Changed - 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) ___ ## [v1.9.3] (Prowler v5.9.3) diff --git a/ui/lib/menu-list.ts b/ui/lib/menu-list.ts index 378386e7e0..3b0b54ef4c 100644 --- a/ui/lib/menu-list.ts +++ b/ui/lib/menu-list.ts @@ -8,7 +8,6 @@ import { Group, LayoutGrid, Mail, - Package, Settings, ShieldCheck, SquareChartGantt, @@ -137,17 +136,9 @@ export const getMenuList = (pathname: string): GroupProps[] => { groupLabel: "", menus: [ { - href: "", + href: "/resources", label: "Resources", icon: Warehouse, - submenus: [ - { - href: "/resources", - label: "Browse all resources", - icon: Package, - }, - ], - defaultOpen: true, }, ], },