Skip to content

Commit

Permalink
Updated the discussion post to show the correct time (#172)
Browse files Browse the repository at this point in the history
  • Loading branch information
JmScherer authored May 6, 2024
1 parent b9b618c commit a9c561a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/AnalysisView/DiscussionPost.vue
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export default {
},
computed: {
timestamp: function() {
return new Date(this.publishTimestamp).toUTCString();
return new Date(this.publishTimestamp + 'Z').toLocaleString();
},
isUser: function() {
return this.userClientId == this.authorId;
Expand Down

0 comments on commit a9c561a

Please sign in to comment.