From 15e01d70569bc25e02806430a64c7ff43227a09c Mon Sep 17 00:00:00 2001 From: Marshall Main Date: Thu, 26 Aug 2021 21:05:17 -0700 Subject: [PATCH] Fix remaining reference to ALERT_STATUS --- .../detections/components/alerts_table/default_config.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugins/security_solution/public/detections/components/alerts_table/default_config.tsx b/x-pack/plugins/security_solution/public/detections/components/alerts_table/default_config.tsx index 8d8cf0a2533ca..9549b3dec33b4 100644 --- a/x-pack/plugins/security_solution/public/detections/components/alerts_table/default_config.tsx +++ b/x-pack/plugins/security_solution/public/detections/components/alerts_table/default_config.tsx @@ -236,7 +236,7 @@ export const buildAlertStatusesFilterRuleRegistry = (statuses: Status[]): Filter bool: { should: statuses.map((status) => ({ term: { - [ALERT_STATUS]: status, + [ALERT_WORKFLOW_STATUS]: status, }, })), },