We are in the browser, avoid const

This commit is contained in:
Johannes Zellner
2019-08-22 18:33:37 +02:00
parent 52d501dae8
commit 775f6eff0b

View File

@@ -157,7 +157,7 @@ angular.module('Application').controller('GraphsController', ['$scope', '$locati
});
// get disk usage data
const graphiteQueries = disk.contains.map(function (content) {
var graphiteQueries = disk.contains.map(function (content) {
return 'absolute(collectd.localhost.du-' + content.id + '.capacity-usage)';
});