mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-24 10:14:26 +00:00
bug fix fix team model selector
This commit is contained in:
parent
66c88a9cfc
commit
673b3175b8
1 changed files with 2 additions and 2 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>
|
||||
))}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue