mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-27 19:54:13 +00:00
fix - ui show correct team budget when budget = 0.0
This commit is contained in:
parent
ee64f7da72
commit
0c0f81df38
1 changed files with 1 additions and 1 deletions
|
@ -427,7 +427,7 @@ const Team: React.FC<TeamProps> = ({
|
|||
overflow: "hidden",
|
||||
}}
|
||||
>
|
||||
{team["max_budget"] ? team["max_budget"] : "No limit"}
|
||||
{team["max_budget"] !== null && team["max_budget"] !== undefined ? team["max_budget"] : "No limit"}
|
||||
</TableCell>
|
||||
<TableCell
|
||||
style={{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue