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 d35e615 commit 5e106b5Copy full SHA for 5e106b5
frontend/src/index.js
@@ -16,7 +16,7 @@ async function graphHistory(history, path) {
16
17
let dateStr = function(timestamp){
18
let date = new Date(timestamp);
19
- return date.getDate() + '/' + date.getMonth() + '/' + date.getFullYear();
+ return `${date.getDate()}/${date.getMonth() + 1}/${date.getFullYear()}`;
20
}
21
22
var data = {
0 commit comments