Skip to content

Commit 94a365d

Browse files
committed
Fix for the schedules columns not being UTC
1 parent 2f35182 commit 94a365d

File tree

1 file changed

+2
-2
lines changed
  • apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.v3.$projectParam.schedules

1 file changed

+2
-2
lines changed

apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.v3.$projectParam.schedules/route.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -261,10 +261,10 @@ function SchedulesTable({
261261
{schedule.userProvidedDeduplicationKey ? schedule.deduplicationKey : "–"}
262262
</TableCell>
263263
<TableCell to={path} className={cellClass}>
264-
<DateTime date={schedule.nextRun} />
264+
<DateTime date={schedule.nextRun} timeZone="utc" />
265265
</TableCell>
266266
<TableCell to={path} className={cellClass}>
267-
{schedule.lastRun ? <DateTime date={schedule.lastRun} /> : "–"}
267+
{schedule.lastRun ? <DateTime date={schedule.lastRun} timeZone="utc" /> : "–"}
268268
</TableCell>
269269
<TableCell to={path} className={cellClass}>
270270
<div className="flex gap-1">

0 commit comments

Comments
 (0)