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

fix: table panel on initial load
This commit is contained in:
Galen Kistler
2025-05-06 12:42:33 -05:00
committed by GitHub
parent 68c513e190
commit afbf312152
@@ -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>
);
}