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": {