mirror of
https://github.com/tiennm99/litellm.git
synced 2026-08-20 08:23:47 +00:00
fix - ui show correct team budget when budget = 0.0
This commit is contained in:
committed by
Krrish Dholakia
parent
8f77cfc013
commit
b30856db73
@@ -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={{
|
||||
|
||||
Reference in New Issue
Block a user