From c9851b3a478b4af1e2c9ae0b944d6ae3b3039382 Mon Sep 17 00:00:00 2001 From: Jan Monschke Date: Thu, 26 Sep 2024 10:31:34 +0200 Subject: [PATCH] fix fetching all timelines --- .../security_solution/public/timelines/containers/all/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugins/security_solution/public/timelines/containers/all/index.tsx b/x-pack/plugins/security_solution/public/timelines/containers/all/index.tsx index 1f6ef7df66961..48d4aa698a324 100644 --- a/x-pack/plugins/security_solution/public/timelines/containers/all/index.tsx +++ b/x-pack/plugins/security_solution/public/timelines/containers/all/index.tsx @@ -139,7 +139,7 @@ export const useGetAllTimeline = (): AllTimelinesArgs => { search, sort_field: sort.sortField, sort_order: sort.sortOrder, - status, + status: status || undefined, timeline_type: timelineType, }; const getAllTimelineResponse = await getAllTimelines(variables, abortCtrl.signal);