diff --git a/public/app/features/explore/Logs.tsx b/public/app/features/explore/Logs.tsx index ba05a554850..f4e5f146532 100644 --- a/public/app/features/explore/Logs.tsx +++ b/public/app/features/explore/Logs.tsx @@ -19,6 +19,7 @@ import { Switch, LogLabels, ToggleButtonGroup, ToggleButton, LogRows } from '@gr import store from 'app/core/store'; import { ExploreGraphPanel } from './ExploreGraphPanel'; +import { MetaInfoText } from './MetaInfoText'; const SETTINGS_KEYS = { showLabels: 'grafana.explore.logs.showLabels', @@ -219,14 +220,14 @@ export class Logs extends PureComponent { {hasData && meta && ( -
- {meta.map(item => ( -
- {item.label}: - {renderMetaItem(item.value, item.kind)} -
- ))} -
+ { + return { + label: item.label, + value: renderMetaItem(item.value, item.kind), + }; + })} + /> )}