mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-07 08:26:10 +00:00
fix(ui): label request logs column "Key Alias" to match filter (#31037)
The request logs table column displayed "Key Name" while its accessor (metadata.user_api_key_alias) and the corresponding filter both use the "Key Alias" label; this aligns the column header with that naming.
This commit is contained in:
parent
3615049071
commit
ee5b2a367d
1 changed files with 1 additions and 1 deletions
|
|
@ -327,7 +327,7 @@ export const createColumns = (sortProps?: LogsSortProps): ColumnDef<LogEntry>[]
|
|||
},
|
||||
},
|
||||
{
|
||||
header: "Key Name",
|
||||
header: "Key Alias",
|
||||
accessorKey: "metadata.user_api_key_alias",
|
||||
cell: (info: any) => (
|
||||
<Tooltip title={String(info.getValue() || "-")}>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue