Logs: Fix table panel not rendering on initial load in Explore (#105023)
fix: table panel on initial load
This commit is contained in:
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user