This commit is contained in:
hailin 2025-04-22 17:51:10 +08:00
parent 3c1f86af40
commit 6f69bc69c9
1 changed files with 2 additions and 2 deletions

View File

@ -543,7 +543,7 @@ export const ProfileSettings: FC<ProfileSettingsProps> = ({}) => {
<Label>{t("profile.azureOpenAIKeySetByAdmin")}</Label>
) : (
<Input
placeholder="Azure OpenAI API Key"
placeholder={t("profile.azureOpenaiApiKey")}
type="password"
value={azureOpenaiAPIKey}
onChange={e => setAzureOpenaiAPIKey(e.target.value)}
@ -556,7 +556,7 @@ export const ProfileSettings: FC<ProfileSettingsProps> = ({}) => {
<Label>{t("profile.openAIAPIKeySetByAdmin")}</Label>
) : (
<Input
placeholder="OpenAI API Key"
placeholder={t("profile.openaiApiKey")}
type="password"
value={openaiAPIKey}
onChange={e => setOpenaiAPIKey(e.target.value)}