From f68ce40c307d72cee4ee8fe6093560d545b2cb89 Mon Sep 17 00:00:00 2001 From: ze0s <43699394+zze0s@users.noreply.github.com> Date: Sun, 19 Mar 2023 21:40:48 +0100 Subject: [PATCH] fix(releases): mismatched timestamp in list (#774) * bugfix: WebUI - Mismatched Timestamps in Releases Page #770 * oops --------- Co-authored-by: Brett Petch --- web/src/components/data-table/Cells.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/components/data-table/Cells.tsx b/web/src/components/data-table/Cells.tsx index 458fa78..8321b8d 100644 --- a/web/src/components/data-table/Cells.tsx +++ b/web/src/components/data-table/Cells.tsx @@ -11,7 +11,7 @@ interface CellProps { } export const AgeCell = ({ value }: CellProps) => ( -
+
{formatDistanceToNowStrict(new Date(value), { addSuffix: false })}
);