Skip to content

Commit

Permalink
This is PR #366
Browse files Browse the repository at this point in the history
  • Loading branch information
clebertsuconic committed Jun 16, 2020
2 parents 1c27723 + 99a4343 commit 25325ee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ var ARTEMIS = (function(ARTEMIS) {
var d = new Date(timestamp);
// "yyyy-MM-dd HH:mm:ss"
//add 1 to month as getmonth returns the position not the actual month
return d.getFullYear() + "-" + pad2(d.getMonth() + 1) + "-" + pad2(d.getDay()) + " " + pad2(d.getHours()) + ":" + pad2(d.getMinutes()) + ":" + pad2(d.getSeconds());
return d.getFullYear() + "-" + pad2(d.getMonth() + 1) + "-" + pad2(d.getDate()) + " " + pad2(d.getHours()) + ":" + pad2(d.getMinutes()) + ":" + pad2(d.getSeconds());
}

var typeLabels = ["default", "1", "object", "text", "bytes", "map", "stream", "embedded"];
Expand Down

0 comments on commit 25325ee

Please sign in to comment.