UI QA fixes

This commit is contained in:
Ishaan Jaff
2025-05-31 09:41:22 -07:00
parent 68fd17d15e
commit 1a05f8d9e2
2 changed files with 3 additions and 0 deletions
@@ -224,12 +224,14 @@ const PROVIDER_CREDENTIAL_FIELDS: Record<Providers, ProviderCredentialField[]> =
{
key: "aws_access_key_id",
label: "AWS Access Key ID",
type: "password",
required: true,
tooltip: "You can provide the raw key or the environment variable (e.g. `os.environ/MY_SECRET_KEY`)."
},
{
key: "aws_secret_access_key",
label: "AWS Secret Access Key",
type: "password",
required: true,
tooltip: "You can provide the raw key or the environment variable (e.g. `os.environ/MY_SECRET_KEY`)."
},
@@ -101,6 +101,7 @@ const AddCredentialsModal: React.FC<AddCredentialsModalProps> = ({
tooltip="Helper to auto-populate provider specific fields"
>
<AntdSelect
showSearch
onChange={(value) => {
setSelectedProvider(value as Providers);
form.setFieldValue("custom_llm_provider", value);