mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 00:25:46 -06:00
fixes toggleDownloadForExcel function (#34685)
This commit is contained in:
parent
de86114b66
commit
f05bddae43
@ -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…
Reference in New Issue
Block a user