We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b04ac5 commit 7c76b25Copy full SHA for 7c76b25
2 files changed
OpenFlow/src/public/Controllers.ts
@@ -78,9 +78,9 @@ module openflow {
78
chart.data = [[], [], []];
79
for (var x = 0; x < stats.length; x++) {
80
var model = stats[x].value;
81
- chart.data[1].push(model.minrun);
82
- chart.data[2].push(model.run);
83
- chart.data[0].push(model.maxrun);
+ chart.data[0].push(model.minrun);
+ chart.data[1].push(model.run);
+ chart.data[2].push(model.maxrun);
84
var id = stats[x]._id;
85
var workflow = workflows.filter(x => x._id == id)[0];
86
if (workflow == undefined) { chart.labels.push("unknown"); } else { chart.labels.push(workflow.name); }
VERSION
@@ -1 +1 @@
1
-0.0.82
+0.0.83
0 commit comments