upd: remove type username to confirm dialog

resolves # 759
This commit is contained in:
Marie 2024-10-18 01:09:46 +02:00
parent fea7889e0c
commit ed064b2193
No known key found for this signature in database
GPG key ID: 7ADF6C9CD9A28555

View file

@ -69,22 +69,10 @@ async function deleteAccount() {
}); });
if (confirm.canceled) return; if (confirm.canceled) return;
const typed = await os.inputText({ await os.apiWithDialog('admin/decline-user', {
text: i18n.t('typeToConfirm', { x: props.user.username }), userId: props.user.id,
}); });
if (typed.canceled) return; emits('deleted', props.user.id);
if (typed.result === props.user.username) {
await os.apiWithDialog('admin/decline-user', {
userId: props.user.id,
});
emits('deleted', props.user.id);
} else {
os.alert({
type: 'error',
text: 'input not match',
});
}
} }
async function approveAccount() { async function approveAccount() {