mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-27 19:54:13 +00:00
fix view users table
This commit is contained in:
parent
1e314ff3d3
commit
aa7d127901
2 changed files with 7 additions and 5 deletions
|
@ -198,7 +198,9 @@ const ViewUserDashboard: React.FC<ViewUserDashboardProps> = ({
|
|||
<TableRow key={user.user_id}>
|
||||
<TableCell>{user.user_id || "-"}</TableCell>
|
||||
<TableCell>{user.user_email || "-"}</TableCell>
|
||||
<TableCell>{user.user_role || "-"}</TableCell>
|
||||
<TableCell>
|
||||
{possibleUIRoles?.[user?.user_role]?.ui_label || "-"}
|
||||
</TableCell>
|
||||
<TableCell>
|
||||
{user.spend ? user.spend?.toFixed(2) : "-"}
|
||||
</TableCell>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue