mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
explore: fix filtering logs-data in table-display (#57356)
This commit is contained in:
parent
017da781cf
commit
8d0e24a622
@ -275,13 +275,13 @@ export class Explore extends React.PureComponent<Props, ExploreState> {
|
||||
}
|
||||
|
||||
renderTablePanel(width: number) {
|
||||
const { exploreId, datasourceInstance, timeZone } = this.props;
|
||||
const { exploreId, timeZone } = this.props;
|
||||
return (
|
||||
<TableContainer
|
||||
ariaLabel={selectors.pages.Explore.General.table}
|
||||
width={width}
|
||||
exploreId={exploreId}
|
||||
onCellFilterAdded={datasourceInstance?.modifyQuery ? this.onCellFilterAdded : undefined}
|
||||
onCellFilterAdded={this.onCellFilterAdded}
|
||||
timeZone={timeZone}
|
||||
/>
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user