This commit is contained in:
syuilo
2025-02-22 11:21:38 +09:00
parent 333b22c351
commit 103015b5e8
8 changed files with 90 additions and 7 deletions

View File

@@ -281,10 +281,6 @@ const meta = await misskeyApi('admin/meta');
const proxyAccount = await misskeyApi('users/show', { userId: meta.proxyAccountId });
const proxyAccountProfile = reactive({
description: proxyAccount.description,
});
const infoForm = useForm({
name: meta.name ?? '',
shortName: meta.shortName ?? '',
@@ -385,7 +381,7 @@ const federationForm = useForm({
});
const proxyAccountForm = useForm({
description: proxyAccountProfile.description,
description: proxyAccount.description,
}, async (state) => {
await os.apiWithDialog('admin/update-proxy-account', {
description: state.description,