diff --git a/public/app/features/explore/Logs/Logs.tsx b/public/app/features/explore/Logs/Logs.tsx index c98eec23cf6..22949a946fd 100644 --- a/public/app/features/explore/Logs/Logs.tsx +++ b/public/app/features/explore/Logs/Logs.tsx @@ -1132,6 +1132,7 @@ const UnthemedLogs: React.FunctionComponent = (props: Props) => { onUnpinLine={onPinToContentOutlineClick} onPinLine={onPinToContentOutlineClick} pinLineButtonTooltipTitle={pinLineButtonTooltipTitle} + renderPreview /> diff --git a/public/app/features/logs/components/PreviewLogRow.tsx b/public/app/features/logs/components/PreviewLogRow.tsx index 276bb2400cf..c772e3581d5 100644 --- a/public/app/features/logs/components/PreviewLogRow.tsx +++ b/public/app/features/logs/components/PreviewLogRow.tsx @@ -21,9 +21,9 @@ export const PreviewLogRow = ({ row, showDuplicates, showLabels, showTime, displ preview /> ) : ( - {row.entry} + {row.entry} )} - + ); };