feat(ui): add provider type filter to providers page (#8473)

This commit is contained in:
Pablo Lara
2025-08-07 14:34:04 +02:00
committed by GitHub
parent 85197036ca
commit 31f98092bf
2 changed files with 6 additions and 1 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ All notable changes to the **Prowler UI** are documented in this file.
## [1.11.0] (Prowler v5.11.0 - UNRELEASED)
### 🚀 Added
- `Cloud Provider` type filter to providers page [(#8473)](https://github.com/prowler-cloud/prowler/pull/8473)
### 🔄 Changed
### 🐞 Fixed
+5
View File
@@ -7,6 +7,11 @@ export const filterProviders = [
labelCheckboxGroup: "Connection",
values: ["false", "true"],
},
{
key: "provider__in",
labelCheckboxGroup: "Cloud Provider",
values: [...PROVIDER_TYPES],
},
// Add more filter categories as needed
];