Slash symbol "/" wasn't escaped when we chose variable from template dropdown, so we couldn't choose interface names like Gi9/10 when querying from influxdb.
@@ -35,7 +35,7 @@ function (angular, _) {
};
function regexEscape(value) {
- return value.replace(/[\\^$*+?.()|[\]{}]/g, '\\$&');
+ return value.replace(/[\\^$*+?.()|[\]{}\/]/g, '\\$&');
}
function luceneEscape(value) {