[UI] Bug Fix, team model selector (#10171)

* fix tooltip

* bug fix fix team model selector
This commit is contained in:
Ishaan Jaff 2025-04-19 16:31:38 -07:00 committed by GitHub
parent 6206649219
commit 431b230f07
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

@ -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>
))} ))}

View file

@ -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>