diff --git a/frontend/components/chapter/DatePostedLabel.vue b/frontend/components/chapter/DatePostedLabel.vue index 9963698..3a947ea 100644 --- a/frontend/components/chapter/DatePostedLabel.vue +++ b/frontend/components/chapter/DatePostedLabel.vue @@ -27,7 +27,7 @@ export default { 'Novembro', 'Dezembro', ]; - const postedDatetime = new Date(datetimeString); + const postedDatetime = new Date(`${datetimeString} UTC`); const postedRecentlyLabel = this.postedRecentlyLabel(postedDatetime); if (postedRecentlyLabel) return postedRecentlyLabel;