瀏覽代碼

influxdb: fixed template variable interpolation of multi valued variables when using raw query editor mode, fixes #8165

Torkel Ödegaard 8 年之前
父節點
當前提交
d2a22e7b23
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      public/app/plugins/datasource/influxdb/influx_query.ts

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

@@ -194,7 +194,7 @@ export default class InfluxQuery {
     }
 
     var escapedValues = _.map(value, kbn.regexEscape);
-    return escapedValues.join('|');
+    return '(' + escapedValues.join('|') + ')';
   }
 
   render(interpolate?) {