소스 검색

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?) {