Skip to content

Commit

Permalink
fix(frontend): converted utc to local time zone before diplaying to user
Browse files Browse the repository at this point in the history
  • Loading branch information
ashrafchowdury committed Nov 11, 2024
1 parent f52c9e5 commit d6e7a17
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,9 @@ const ObservabilityDashboard = () => {
}),
render: (_, record) => {
return (
<div>{dayjs(record.lifecycle?.created_at).format("HH:mm:ss DD MMM YYYY")}</div>
<div>
{dayjs(record.lifecycle?.created_at).local().format("HH:mm:ss DD MMM YYYY")}
</div>
)
},
},
Expand Down

0 comments on commit d6e7a17

Please sign in to comment.