This commit is contained in:
parent
3c1f86af40
commit
6f69bc69c9
|
|
@ -543,7 +543,7 @@ export const ProfileSettings: FC<ProfileSettingsProps> = ({}) => {
|
||||||
<Label>{t("profile.azureOpenAIKeySetByAdmin")}</Label>
|
<Label>{t("profile.azureOpenAIKeySetByAdmin")}</Label>
|
||||||
) : (
|
) : (
|
||||||
<Input
|
<Input
|
||||||
placeholder="Azure OpenAI API Key"
|
placeholder={t("profile.azureOpenaiApiKey")}
|
||||||
type="password"
|
type="password"
|
||||||
value={azureOpenaiAPIKey}
|
value={azureOpenaiAPIKey}
|
||||||
onChange={e => setAzureOpenaiAPIKey(e.target.value)}
|
onChange={e => setAzureOpenaiAPIKey(e.target.value)}
|
||||||
|
|
@ -556,7 +556,7 @@ export const ProfileSettings: FC<ProfileSettingsProps> = ({}) => {
|
||||||
<Label>{t("profile.openAIAPIKeySetByAdmin")}</Label>
|
<Label>{t("profile.openAIAPIKeySetByAdmin")}</Label>
|
||||||
) : (
|
) : (
|
||||||
<Input
|
<Input
|
||||||
placeholder="OpenAI API Key"
|
placeholder={t("profile.openaiApiKey")}
|
||||||
type="password"
|
type="password"
|
||||||
value={openaiAPIKey}
|
value={openaiAPIKey}
|
||||||
onChange={e => setOpenaiAPIKey(e.target.value)}
|
onChange={e => setOpenaiAPIKey(e.target.value)}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue