mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-23 00:41:40 +00:00
style(ui/agents): apply prettier to AgentList
This commit is contained in:
parent
e5f372091a
commit
1414cfdb71
1 changed files with 2 additions and 1 deletions
|
|
@ -41,7 +41,8 @@ export default function AgentList({ agents, loading }: AgentListProps) {
|
|||
title: "Last activity",
|
||||
dataIndex: "last_activity_at",
|
||||
key: "last_activity_at",
|
||||
render: (value: string | null) => (value ? dayjs(value).fromNow?.() ?? dayjs(value).format("YYYY-MM-DD HH:mm") : "—"),
|
||||
render: (value: string | null) =>
|
||||
value ? dayjs(value).fromNow?.() ?? dayjs(value).format("YYYY-MM-DD HH:mm") : "—",
|
||||
},
|
||||
];
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue