+ {/* Attributs détectés (ex-DetailsView) */}
+
+
{/* Ligne 0 : Synthèse multi-sources */}
diff --git a/frontend/src/hooks/useDetections.ts b/frontend/src/hooks/useDetections.ts
index 2616500..cd026e6 100644
--- a/frontend/src/hooks/useDetections.ts
+++ b/frontend/src/hooks/useDetections.ts
@@ -12,6 +12,7 @@ interface UseDetectionsParams {
sort_by?: string;
sort_order?: string;
group_by_ip?: boolean;
+ score_type?: string;
}
export function useDetections(params: UseDetectionsParams = {}) {
@@ -44,6 +45,7 @@ export function useDetections(params: UseDetectionsParams = {}) {
params.sort_by,
params.sort_order,
params.group_by_ip,
+ params.score_type,
]);
return { data, loading, error };