explore: fix filtering logs-data in table-display (#57356)

This commit is contained in:
Gábor Farkas
2022-10-24 16:18:56 +02:00
committed by GitHub
parent 017da781cf
commit 8d0e24a622

View File

@@ -275,13 +275,13 @@ export class Explore extends React.PureComponent<Props, ExploreState> {
} }
renderTablePanel(width: number) { renderTablePanel(width: number) {
const { exploreId, datasourceInstance, timeZone } = this.props; const { exploreId, timeZone } = this.props;
return ( return (
<TableContainer <TableContainer
ariaLabel={selectors.pages.Explore.General.table} ariaLabel={selectors.pages.Explore.General.table}
width={width} width={width}
exploreId={exploreId} exploreId={exploreId}
onCellFilterAdded={datasourceInstance?.modifyQuery ? this.onCellFilterAdded : undefined} onCellFilterAdded={this.onCellFilterAdded}
timeZone={timeZone} timeZone={timeZone}
/> />
); );