feat(ui): add GitHub submenu under High Risk Findings (#8488)

Co-authored-by: Pablo Lara <larabjj@gmail.com>
This commit is contained in:
sumit-tft
2025-08-08 14:06:36 +05:30
committed by GitHub
parent 82171ee916
commit c8dcb0edb0
2 changed files with 8 additions and 0 deletions

View File

@@ -22,6 +22,8 @@ All notable changes to the **Prowler UI** are documented in this file.
### 🐞 Fixed
- Field for `Assume Role` in AWS role credentials form shown again [(#8484)](https://github.com/prowler-cloud/prowler/pull/8484)
- `GitHub` submenu to High Risk Findings [(#8488)](https://github.com/prowler-cloud/prowler/pull/8488)
## [1.10.0] (Prowler v5.10.0)

View File

@@ -28,6 +28,7 @@ import {
CircleHelpIcon,
DocIcon,
GCPIcon,
GithubIcon,
KubernetesIcon,
LighthouseIcon,
M365Icon,
@@ -128,6 +129,11 @@ export const getMenuList = ({
label: "Kubernetes",
icon: KubernetesIcon,
},
{
href: "/findings?filter[status__in]=FAIL&filter[severity__in]=critical%2Chigh%2Cmedium&filter[provider_type__in]=github&sort=severity,-inserted_at",
label: "Github",
icon: GithubIcon,
},
],
defaultOpen: false,
},