Skip to content
This repository has been archived by the owner on Apr 19, 2023. It is now read-only.

Commit

Permalink
Fix #66
Browse files Browse the repository at this point in the history
Works as a fix for and should close #66
  • Loading branch information
Damain Maring committed Jan 8, 2017
1 parent 1428f4f commit edfc28e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webserver/public/js/charting/charting.js
Expand Up @@ -67,7 +67,7 @@
var time = [];
var latency = [];
for (var i = 0; i < arr.length; i++) {
time.push([arr[i][fieldTime]]);
time.push(new Date(arr[i][fieldTime]));
latency.push(Math.round([arr[i][fieldData]]));
}
return {time: time, data: latency};
Expand Down

0 comments on commit edfc28e

Please sign in to comment.