From 2695ed91d10b7d400f602b674f10020f3a6d8ae8 Mon Sep 17 00:00:00 2001 From: Matias Chomicki Date: Sat, 16 Aug 2025 16:47:37 +0200 Subject: [PATCH] Logs: fix running condition causing LogList to not be rendered (#109768) --- public/app/features/explore/Logs/Logs.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/app/features/explore/Logs/Logs.tsx b/public/app/features/explore/Logs/Logs.tsx index fbac705c277..629f9ee37c2 100644 --- a/public/app/features/explore/Logs/Logs.tsx +++ b/public/app/features/explore/Logs/Logs.tsx @@ -1125,9 +1125,9 @@ const UnthemedLogs: React.FunctionComponent = (props: Props) => { /> )} - {config.featureToggles.newLogsPanel && visualisationType === 'logs' && hasData && ( + {config.featureToggles.newLogsPanel && visualisationType === 'logs' && (
- {logsContainerRef.current && ( + {logsContainerRef.current && hasData && (