mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-11 22:51:28 +00:00
style: add more tooltips
This commit is contained in:
parent
172738b98b
commit
1322e3b349
2 changed files with 2 additions and 1 deletions
|
|
@ -449,7 +449,7 @@ const TeamInfoView: React.FC<TeamInfoProps> = ({
|
|||
<NumericalInput step={0.01} precision={2} style={{ width: "100%" }} />
|
||||
</Form.Item>
|
||||
|
||||
<Form.Item label="Team Member Budget (USD)" name="team_member_budget">
|
||||
<Form.Item label="Team Member Budget (USD)" name="team_member_budget" tooltip="This is the individual budget for a user in the team.">
|
||||
<NumericalInput step={0.01} precision={2} style={{ width: "100%" }} />
|
||||
</Form.Item>
|
||||
|
||||
|
|
|
|||
|
|
@ -1056,6 +1056,7 @@ const Teams: React.FC<TeamProps> = ({
|
|||
label="Team Member Budget (USD)"
|
||||
name="team_member_budget"
|
||||
normalize={(value) => value ? Number(value) : undefined}
|
||||
tooltip="This is the individual budget for a user in the team."
|
||||
>
|
||||
<NumericalInput step={0.01} precision={2} width={200} />
|
||||
</Form.Item>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue