merge graph timestamps into single array, use seconds

This commit is contained in:
Nick Krecklow
2020-05-11 04:12:46 -05:00
parent ef0c41ee1d
commit 84004f22be
9 changed files with 64 additions and 100 deletions

View File

@ -18,8 +18,8 @@ class TimeTracker {
return timestamp
}
getPoints () {
return this._points
getPointsSeconds () {
return this._points.map(value => Math.floor(value / 1000))
}
static getMaxServerGraphDataLength () {