Commit d6cb4273 authored by Jérome Perrin's avatar Jérome Perrin

fix a bug with capacity utilization widget

parent df071c74
......@@ -162,7 +162,9 @@
if (k === 'period') {
period = v;
}
if (k !== 'utilization'){
});
$.each(step, function(k, v){
if (k !== 'utilization' && k !== 'period'){
usage += v;
}
});
......
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