We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 650de50 commit 2203ad0Copy full SHA for 2203ad0
lib/cli/chart.js
@@ -8,6 +8,6 @@ exports.generate = (data, type = 'cases') => {
8
height: 7,
9
format: (x, i) => x.toFixed().padStart(maxLength)
10
};
11
- chartData = Object.values(data.timeline[type]);
+ chartData = Object.values(data.timeline[type]).flat();
12
return chart.plot(chartData, config);
13
}
0 commit comments