forked from phoenix/litellm-mirror
fix ui check when budget is 0 (#6506)
This commit is contained in:
parent
ed42b55a84
commit
b419170cbd
1 changed files with 1 additions and 1 deletions
|
@ -267,7 +267,7 @@ const ViewUserDashboard: React.FC<ViewUserDashboardProps> = ({
|
||||||
{user.spend ? user.spend?.toFixed(2) : "-"}
|
{user.spend ? user.spend?.toFixed(2) : "-"}
|
||||||
</TableCell>
|
</TableCell>
|
||||||
<TableCell>
|
<TableCell>
|
||||||
{user.max_budget ? user.max_budget : "Unlimited"}
|
{user.max_budget !== null ? user.max_budget : "Unlimited"}
|
||||||
</TableCell>
|
</TableCell>
|
||||||
<TableCell>
|
<TableCell>
|
||||||
<Grid numItems={2}>
|
<Grid numItems={2}>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue