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, }, ], },