Skip to content

Commit

Permalink
Testing List timezone
Browse files Browse the repository at this point in the history
  • Loading branch information
datajohnson committed Jul 2, 2024
1 parent 6ca4192 commit 0a27f0c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion web/src/components/report/ReportListCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 0a27f0c

Please sign in to comment.