InfluxDB ds: Query variable breaks trying to interpolate __interval (#63682)

This commit is contained in:
Ivan Ortega Alba 2023-02-23 20:30:20 +01:00 committed by GitHub
parent 98e1aeaebd
commit ca4cd85504
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -180,7 +180,7 @@ export default class InfluxDatasource extends DataSourceWithBackend<InfluxQuery,
applyTemplateVariables(query: InfluxQuery, scopedVars: ScopedVars): Record<string, any> {
// We want to interpolate these variables on backend
const { __interval, __interval_ms, ...rest } = scopedVars;
const { __interval, __interval_ms, ...rest } = scopedVars || {};
if (this.isFlux) {
return {