[APM] fixes #27117 by setting name property when defining table columns (#27443) (#27465)

This commit is contained in:
Oliver Gupte 2018-12-18 18:02:14 -08:00 committed by GitHub
parent c650e35e98
commit 3687e6af16
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -122,10 +122,14 @@ export function SpanFlyout({
<EuiBasicTable
columns={[
{
name: '',
field: 'key',
render: (key: string) => <TagName>{key}</TagName>
},
{ field: 'value' }
{
name: '',
field: 'value'
}
]}
items={tags}
/>