mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-10 22:41:41 +00:00
UI - fix col headers
This commit is contained in:
parent
d8687b5d43
commit
8b60b703f7
1 changed files with 1 additions and 9 deletions
|
|
@ -441,15 +441,7 @@ export const auditLogColumns: ColumnDef<AuditLogEntry>[] = [
|
|||
},
|
||||
},
|
||||
{
|
||||
header: "Created At",
|
||||
accessorKey: "before_value.created_at",
|
||||
cell: (info: any) => {
|
||||
const createdAt = info.row.original.before_value?.created_at;
|
||||
return createdAt ? <TimeCell utcTime={createdAt} /> : "-";
|
||||
},
|
||||
},
|
||||
{
|
||||
header: "Updated At",
|
||||
header: "Timestamp",
|
||||
accessorKey: "updated_at",
|
||||
cell: (info: any) => <TimeCell utcTime={info.getValue()} />,
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue