Logs: Fix table panel not rendering on initial load in Explore (#105023)

fix: table panel on initial load
pull/105032/head^2
Galen Kistler 2 months ago committed by GitHub
parent 68c513e190
commit afbf312152
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 4
      public/app/features/logs/components/ControlledLogRows.tsx

@ -86,9 +86,7 @@ export const ControlledLogRows = forwardRef<HTMLDivElement | null, ControlledLog
{rest.visualisationType === 'logs' && (
<LogRowsComponent ref={ref} {...rest} deduplicatedRows={deduplicatedRows} />
)}
{rest.visualisationType === 'table' && rest.panelState && rest.updatePanelState && (
<ControlledLogsTable {...rest} />
)}
{rest.visualisationType === 'table' && rest.updatePanelState && <ControlledLogsTable {...rest} />}
</LogListContextProvider>
);
}

Loading…
Cancel
Save