Skip to content

Commit

Permalink
docs(changelog): update convertDate helper to get actual timestamp (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
mkesavan13 authored Oct 21, 2024
1 parent 35a90bc commit 8f052ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/changelog/assets/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Handlebars.registerHelper('github_linking', function(string, type) {
});

Handlebars.registerHelper('convertDate', function(timestamp) {
return `${new Date(1723028345568).toDateString()} ${new Date(1723028345568).toTimeString()}`;
return `${new Date(timestamp).toDateString()} ${new Date(timestamp).toTimeString()}`;
});


Expand Down

0 comments on commit 8f052ed

Please sign in to comment.