From 52eaf3f16daa0019e2e92294bdea4f425037a5df Mon Sep 17 00:00:00 2001 From: Matias Chomicki Date: Thu, 10 Apr 2025 16:30:13 +0200 Subject: [PATCH] PreviewLogRow: add missing preview styles (#103542) --- public/app/features/explore/Logs/Logs.tsx | 1 + public/app/features/logs/components/PreviewLogRow.tsx | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) 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} )} - + ); };