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

pull/56510/head^2
Gábor Farkas 3 years ago committed by GitHub
parent 017da781cf
commit 8d0e24a622
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      public/app/features/explore/Explore.tsx

@ -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…
Cancel
Save