瀏覽代碼

InfluxDB: Enable interpolation within ad-hoc filter values for InfluxDB data source (#18077)

kvc-code 6 年之前
父節點
當前提交
acc678c309
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      public/app/plugins/datasource/influxdb/influx_query_model.ts

+ 1 - 1
public/app/plugins/datasource/influxdb/influx_query_model.ts

@@ -269,7 +269,7 @@ export default class InfluxQueryModel {
 
   renderAdhocFilters(filters: any[]) {
     const conditions = _.map(filters, (tag, index) => {
-      return this.renderTagCondition(tag, index, false);
+      return this.renderTagCondition(tag, index, true);
     });
     return conditions.join(' ');
   }