feat: Include/exclude muted findings (#8228)

This commit is contained in:
Alejandro Bailo
2025-07-09 16:06:05 +02:00
committed by GitHub
parent a319f80701
commit 8d2f6aa30c
9 changed files with 151 additions and 46 deletions
+2
View File
@@ -73,9 +73,11 @@ export interface FindingsByStatusData {
attributes: {
fail: number;
pass: number;
muted: number;
total: number;
fail_new: number;
pass_new: number;
muted_new: number;
[key: string]: number;
};
};
-10
View File
@@ -19,16 +19,6 @@ export interface CustomDropdownFilterProps {
onFilterChange: (key: string, values: string[]) => void;
}
export interface FilterControlsProps {
search?: boolean;
providers?: boolean;
date?: boolean;
regions?: boolean;
accounts?: boolean;
mutedFindings?: boolean;
customFilters?: FilterOption[];
}
export enum FilterType {
SCAN = "scan__in",
PROVIDER_UID = "provider_uid__in",