From 8b60b703f753dc6510ca7e7c4b07d274b08c9d32 Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Sat, 7 Jun 2025 15:27:45 -0700 Subject: [PATCH] UI - fix col headers --- .../src/components/view_logs/columns.tsx | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/ui/litellm-dashboard/src/components/view_logs/columns.tsx b/ui/litellm-dashboard/src/components/view_logs/columns.tsx index cca45dd805..8acb3070c4 100644 --- a/ui/litellm-dashboard/src/components/view_logs/columns.tsx +++ b/ui/litellm-dashboard/src/components/view_logs/columns.tsx @@ -441,15 +441,7 @@ export const auditLogColumns: ColumnDef[] = [ }, }, { - header: "Created At", - accessorKey: "before_value.created_at", - cell: (info: any) => { - const createdAt = info.row.original.before_value?.created_at; - return createdAt ? : "-"; - }, - }, - { - header: "Updated At", + header: "Timestamp", accessorKey: "updated_at", cell: (info: any) => , },