fix frontend errors

This commit is contained in:
kakkokari-gtyih 2023-12-29 17:29:54 +09:00
parent 0ecab3018a
commit a2344cea9a
3 changed files with 5 additions and 4 deletions

View File

@ -63,8 +63,9 @@ function onSignup(res) {
function onSignupEmailPending() {
dialog.value.close();
}
function onApprovalPending() {
dialog.close();
dialog.value.close();
}
</script>

View File

@ -519,7 +519,7 @@ const headerTabs = computed(() => [{
key: 'raw',
title: 'Raw',
icon: 'ti ti-code',
});
}]);
definePageMetadata(computed(() => ({
title: user.value ? acct(user.value) : i18n.ts.userInfo,

View File

@ -49,9 +49,9 @@ function deleted(id: string) {
}
}
const headerActions = $computed(() => []);
const headerActions = computed(() => []);
const headerTabs = $computed(() => []);
const headerTabs = computed(() => []);
definePageMetadata(computed(() => ({
title: i18n.ts.approvals,