mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 02:34:29 +00:00
[UI] Bug Fix, team model selector (#10171)
* fix tooltip * bug fix fix team model selector
This commit is contained in:
parent
6206649219
commit
431b230f07
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">
|
<Select.Option key="all-proxy-models" value="all-proxy-models">
|
||||||
All Proxy Models
|
All Proxy Models
|
||||||
</Select.Option>
|
</Select.Option>
|
||||||
{userModels.map((model) => (
|
{userModels.map((model, idx) => (
|
||||||
<Select.Option key={model} value={model}>
|
<Select.Option key={idx} value={model}>
|
||||||
{getModelDisplayName(model)}
|
{getModelDisplayName(model)}
|
||||||
</Select.Option>
|
</Select.Option>
|
||||||
))}
|
))}
|
||||||
|
|
|
@ -685,7 +685,7 @@ const Teams: React.FC<TeamProps> = ({
|
||||||
<Form.Item label={
|
<Form.Item label={
|
||||||
<span>
|
<span>
|
||||||
Models{' '}
|
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' }} />
|
<InfoCircleOutlined style={{ marginLeft: '4px' }} />
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
</span>
|
</span>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue