From afbf312152f1bd20ba60e53285961e56506b641d Mon Sep 17 00:00:00 2001 From: Galen Kistler <109082771+gtk-grafana@users.noreply.github.com> Date: Tue, 6 May 2025 12:42:33 -0500 Subject: [PATCH] Logs: Fix table panel not rendering on initial load in Explore (#105023) fix: table panel on initial load --- public/app/features/logs/components/ControlledLogRows.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/public/app/features/logs/components/ControlledLogRows.tsx b/public/app/features/logs/components/ControlledLogRows.tsx index 9bc4155d81a..f81d597f059 100644 --- a/public/app/features/logs/components/ControlledLogRows.tsx +++ b/public/app/features/logs/components/ControlledLogRows.tsx @@ -86,9 +86,7 @@ export const ControlledLogRows = forwardRef )} - {rest.visualisationType === 'table' && rest.panelState && rest.updatePanelState && ( - - )} + {rest.visualisationType === 'table' && rest.updatePanelState && } ); }