Plugins: InfluxDB variable interpolation fix (#51917)

* Don't use regex on flux mode while applying template variables
This commit is contained in:
ismail simsek
2022-07-07 17:16:35 +02:00
committed by GitHub
parent ca80865bf1
commit 885c517983
3 changed files with 15 additions and 18 deletions

View File

@@ -240,7 +240,7 @@ export default class InfluxDatasource extends DataSourceWithBackend<InfluxQuery,
if (this.isFlux) {
return {
...query,
query: this.templateSrv.replace(query.query ?? '', rest, 'regex'), // The raw query text
query: this.templateSrv.replace(query.query ?? '', rest), // The raw query text
};
}