fixes toggleDownloadForExcel function (#34685)

pull/34684/head^2
Matt Abrams 4 years ago committed by GitHub
parent de86114b66
commit f05bddae43
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      public/app/features/inspector/InspectDataTab.tsx

@ -131,11 +131,11 @@ export class InspectDataTab extends PureComponent<Props, State> {
}); });
}; };
toggleDownloadForExcel() { toggleDownloadForExcel = () => {
this.setState((prevState) => ({ this.setState((prevState) => ({
downloadForExcel: !prevState.downloadForExcel, downloadForExcel: !prevState.downloadForExcel,
})); }));
} };
getProcessedData(): DataFrame[] { getProcessedData(): DataFrame[] {
const { options, panel } = this.props; const { options, panel } = this.props;

Loading…
Cancel
Save