From d6df7fdc09b63bba28e034f1f26e756d73a091bd Mon Sep 17 00:00:00 2001 From: kitos Date: Tue, 19 May 2026 13:05:08 +0200 Subject: [PATCH] fix(audit): show UTC suffix on timestamp display --- frontend/src/pages/AuditLogPage.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/pages/AuditLogPage.tsx b/frontend/src/pages/AuditLogPage.tsx index 4aa9766..8153670 100644 --- a/frontend/src/pages/AuditLogPage.tsx +++ b/frontend/src/pages/AuditLogPage.tsx @@ -72,7 +72,8 @@ export default function AuditLogPage() { hour: "2-digit", minute: "2-digit", second: "2-digit", - }); + timeZone: "UTC", + }) + " UTC"; }; const formatDetails = (details: Record | null) => {