forked from phoenix/litellm-mirror
(feat) show slice of metadata
This commit is contained in:
parent
4b33a53f25
commit
9b330db88f
1 changed files with 2 additions and 1 deletions
|
@ -144,7 +144,8 @@ const ViewKeyTable: React.FC<ViewKeyTableProps> = ({
|
|||
<Text>{item.team_id}</Text>
|
||||
</TableCell>
|
||||
<TableCell style={{ maxWidth: "4px", whiteSpace: "pre-wrap", overflow: "hidden" }}>
|
||||
<Text>{JSON.stringify(item.metadata)}</Text>
|
||||
<Text>{JSON.stringify(item.metadata).slice(0, 400)}</Text>
|
||||
|
||||
</TableCell>
|
||||
<TableCell style={{ maxWidth: "4px", whiteSpace: "pre-wrap", overflow: "hidden" }}>
|
||||
<Text>{JSON.stringify(item.models)}</Text>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue