Skip to content

Commit 1a05f8d

Browse files
committed
UI QA fixes
1 parent 68fd17d commit 1a05f8d

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

ui/litellm-dashboard/src/components/add_model/provider_specific_fields.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,12 +224,14 @@ const PROVIDER_CREDENTIAL_FIELDS: Record<Providers, ProviderCredentialField[]> =
224224
{
225225
key: "aws_access_key_id",
226226
label: "AWS Access Key ID",
227+
type: "password",
227228
required: true,
228229
tooltip: "You can provide the raw key or the environment variable (e.g. `os.environ/MY_SECRET_KEY`)."
229230
},
230231
{
231232
key: "aws_secret_access_key",
232233
label: "AWS Secret Access Key",
234+
type: "password",
233235
required: true,
234236
tooltip: "You can provide the raw key or the environment variable (e.g. `os.environ/MY_SECRET_KEY`)."
235237
},

ui/litellm-dashboard/src/components/model_add/add_credentials_tab.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ const AddCredentialsModal: React.FC<AddCredentialsModalProps> = ({
101101
tooltip="Helper to auto-populate provider specific fields"
102102
>
103103
<AntdSelect
104+
showSearch
104105
onChange={(value) => {
105106
setSelectedProvider(value as Providers);
106107
form.setFieldValue("custom_llm_provider", value);

0 commit comments

Comments
 (0)