From fd292f8c68a70d260551d553e82af9d7c3472f74 Mon Sep 17 00:00:00 2001
From: George Djabarov <39195835+djabarovgeorge@users.noreply.github.com>
Date: Tue, 12 Nov 2024 11:18:05 +0200
Subject: [PATCH] feat(dashboard): add full utc date for updated at on hover
(#6948)
---
.../dashboard/src/components/workflow-row.tsx | 25 +++++++++++++------
1 file changed, 18 insertions(+), 7 deletions(-)
diff --git a/apps/dashboard/src/components/workflow-row.tsx b/apps/dashboard/src/components/workflow-row.tsx
index 93f3e3ef988..bb3fd161943 100644
--- a/apps/dashboard/src/components/workflow-row.tsx
+++ b/apps/dashboard/src/components/workflow-row.tsx
@@ -82,13 +82,24 @@ export const WorkflowRow = ({ workflow }: WorkflowRowProps) => {
-
- {new Date(workflow.updatedAt).toLocaleDateString('en-US', {
- year: 'numeric',
- month: 'short',
- day: 'numeric',
- })}
-
+
+
+
+
+
+ {new Date(workflow.updatedAt).toLocaleDateString('en-US', {
+ year: 'numeric',
+ month: 'short',
+ day: 'numeric',
+ })}
+
+
+
+ {new Date(workflow.updatedAt).toUTCString()}
+
+
+
+