Make device analytics timestamp human-readable

3.x.x
Turcy 5 years ago
parent 860072842e
commit 0af18b0255

@ -45,7 +45,14 @@ function drawTable(from, to) {
order: [], order: [],
ajax: { ajax: {
url: "/devicemgt/api/stats/paginate", url: "/devicemgt/api/stats/paginate",
data: buildAjaxData data: buildAjaxData,
dataSrc: function(json) {
return json.data.map(function(event) {
event[0] = new moment(event[0]).
format("YYYY-MM-DD HH:mm:ss.SSS");
return event;
})
}
} }
}); });
} }
@ -71,4 +78,4 @@ function buildAjaxData (){
return obj; return obj;
} }

Loading…
Cancel
Save