This commit is contained in:
lloydzhou
2024-08-01 16:49:55 +08:00
parent 6a0bda00f5
commit e1d6131f13
4 changed files with 146 additions and 111 deletions

View File

@@ -989,12 +989,12 @@ export function Settings() {
subTitle={Locale.Settings.Access.Tencent.ApiKey.SubTitle}
>
<PasswordInput
value={accessStore.tencentApiKey}
value={accessStore.tencentSecretId}
type="text"
placeholder={Locale.Settings.Access.Tencent.ApiKey.Placeholder}
onChange={(e) => {
accessStore.update(
(access) => (access.tencentApiKey = e.currentTarget.value),
(access) => (access.tencentSecretId = e.currentTarget.value),
);
}}
/>