Commit 9c08d7ae by cmartin0077 Committed by Torkel Ödegaard

fix(influxdb) fix tag value autocomplete with upper case values, fixes #5399 (#5919)

parent 5ba6bab2
......@@ -113,7 +113,7 @@ function (_, $, coreModule) {
if (str[0] === '/') { str = str.substring(1); }
if (str[str.length - 1] === '/') { str = str.substring(0, str.length-1); }
try {
return item.toLowerCase().match(str);
return item.toLowerCase().match(str.toLowerCase());
} catch(e) {
return false;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment