mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 18:54:30 +00:00
[UI] Bug Fix, team model selector (#10171)
* fix tooltip * bug fix fix team model selector
This commit is contained in:
parent
01bbb4c406
commit
d7c37fd68d
2 changed files with 3 additions and 3 deletions
|
@ -353,8 +353,8 @@ const TeamInfoView: React.FC<TeamInfoProps> = ({
|
|||
<Select.Option key="all-proxy-models" value="all-proxy-models">
|
||||
All Proxy Models
|
||||
</Select.Option>
|
||||
{userModels.map((model) => (
|
||||
<Select.Option key={model} value={model}>
|
||||
{userModels.map((model, idx) => (
|
||||
<Select.Option key={idx} value={model}>
|
||||
{getModelDisplayName(model)}
|
||||
</Select.Option>
|
||||
))}
|
||||
|
|
|
@ -685,7 +685,7 @@ const Teams: React.FC<TeamProps> = ({
|
|||
<Form.Item label={
|
||||
<span>
|
||||
Models{' '}
|
||||
<Tooltip title="These are the models that your selected organization has access to">
|
||||
<Tooltip title="These are the models that your selected team has access to">
|
||||
<InfoCircleOutlined style={{ marginLeft: '4px' }} />
|
||||
</Tooltip>
|
||||
</span>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue