Commit c9a30ef1 by Torkel Ödegaard

build: fixed broken build

parent 9dac602e
......@@ -400,7 +400,7 @@ var PrometheusCompletions = function() {};
(function() {
this.getCompletions = function(state, session, pos, prefix, callback) {
let token = session.getTokenAt(pos.row, pos.column);
var token = session.getTokenAt(pos.row, pos.column);
if (token.type === 'label.name' || token.type === 'label.value') {
return callback(null, []);
}
......
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