From f7f133d23cee0cf4ad55cd46b023dbd4cdf4a59e Mon Sep 17 00:00:00 2001 From: Marshall Main <55718608+marshallmain@users.noreply.github.com> Date: Tue, 4 Jan 2022 14:58:17 -0800 Subject: [PATCH] Remove usage of kibana.alert.rule.severity|risk_score on 8.0 (#122284) --- .../components/event_details/get_alert_summary_rows.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x-pack/plugins/security_solution/public/common/components/event_details/get_alert_summary_rows.tsx b/x-pack/plugins/security_solution/public/common/components/event_details/get_alert_summary_rows.tsx index 4af444c2ab8ad..61ae5afa5042e 100644 --- a/x-pack/plugins/security_solution/public/common/components/event_details/get_alert_summary_rows.tsx +++ b/x-pack/plugins/security_solution/public/common/components/event_details/get_alert_summary_rows.tsx @@ -50,8 +50,8 @@ const defaultDisplayFields: EventSummaryField[] = [ linkField: 'kibana.alert.rule.uuid', label: ALERTS_HEADERS_RULE, }, - { id: 'kibana.alert.rule.severity', label: ALERTS_HEADERS_SEVERITY }, - { id: 'kibana.alert.rule.risk_score', label: ALERTS_HEADERS_RISK_SCORE }, + { id: 'kibana.alert.severity', label: ALERTS_HEADERS_SEVERITY }, + { id: 'kibana.alert.risk_score', label: ALERTS_HEADERS_RISK_SCORE }, { id: 'host.name' }, { id: 'agent.id', overrideField: AGENT_STATUS_FIELD_NAME, label: i18n.AGENT_STATUS }, { id: 'user.name' },