diff --git a/web/src/components/report/ReportListCard.vue b/web/src/components/report/ReportListCard.vue index 7d7b4ab..7dd681e 100644 --- a/web/src/components/report/ReportListCard.vue +++ b/web/src/components/report/ReportListCard.vue @@ -40,7 +40,9 @@ function makeTitle(input: Incident) { } function makeSubtitle(input: Incident) { - return `Created: ${DateTime.fromISO(input.created_at.toString()).toRelative()}, Status: ${input.status_name}`; + return `Created: ${DateTime.fromISO(input.created_at.toString(), { + zone: "America/Whitehorse", + }).toRelative()}, Status: ${input.status_name}`; } function openReportClick(input: Incident) {