From 91ee32ca0e9ccff8eff7bcc83d81558b6b5bb7a5 Mon Sep 17 00:00:00 2001 From: benjaminleonard Date: Fri, 4 Sep 2026 16:07:27 +0100 Subject: [PATCH] Add `ms` back to content, fix header overflow --- app/pages/system/AuditLog.tsx | 7 ++++--- package-lock.json | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/app/pages/system/AuditLog.tsx b/app/pages/system/AuditLog.tsx index 655c7969b..a158fcc48 100644 --- a/app/pages/system/AuditLog.tsx +++ b/app/pages/system/AuditLog.tsx @@ -330,7 +330,7 @@ const COLUMNS = [ { title: 'Actor ID', className: 'col-actor-id' }, { title: 'Auth Method', className: 'col-auth-method' }, { title: 'Silo ID', className: 'col-silo-id' }, - { title: 'Duration (ms)', className: 'col-duration' }, + { title: 'Duration', className: 'col-duration' }, ] as const const HeaderCell = classed.div`text-mono-sm text-tertiary` @@ -441,6 +441,7 @@ const Row = memo(function Row({ {msFormat.format( differenceInMilliseconds(new Date(log.timeCompleted), log.timeStarted) )} + ms @@ -867,8 +868,8 @@ const ExpandedItem = ({ {msFormat.format( differenceInMilliseconds(new Date(item.timeCompleted), item.timeStarted) - )}{' '} - ms + )} + ms diff --git a/package-lock.json b/package-lock.json index 2cfab2f5a..ef4f05378 100644 --- a/package-lock.json +++ b/package-lock.json @@ -88,7 +88,7 @@ "vitest-browser-react": "^2.2.0" }, "engines": { - "node": ">=22" + "node": "^24.15.0" } }, "node_modules/@apidevtools/json-schema-ref-parser": {