Skip to content

Commit

Permalink
Merge pull request #11 from icefoganalytics/main
Browse files Browse the repository at this point in the history
Testing List timezone
  • Loading branch information
datajohnson authored Jul 2, 2024
2 parents e737a12 + 0a27f0c commit 94b0785
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 94b0785

Please sign in to comment.