We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26191ac commit 64a9371Copy full SHA for 64a9371
1 file changed
x-pack/plugins/security_solution/public/common/components/event_details/summary_view.tsx
@@ -118,8 +118,8 @@ const getSummary = ({
118
}
119
const linkValueField =
120
item.linkField != null && data.find((d) => d.field === item.linkField);
121
- const linkValue = getOr(null, 'originalValue', linkValueField);
122
- const value = getOr(null, 'originalValue', field);
+ const linkValue = getOr(null, 'originalValue.0', linkValueField);
+ const value = getOr(null, 'originalValue.0', field);
123
const category = field.category;
124
const fieldType = get(`${category}.fields.${field.field}.type`, browserFields) as string;
125
const description = {
0 commit comments