fix frontend errors
This commit is contained in:
parent
0ecab3018a
commit
a2344cea9a
|
@ -63,8 +63,9 @@ function onSignup(res) {
|
|||
function onSignupEmailPending() {
|
||||
dialog.value.close();
|
||||
}
|
||||
|
||||
function onApprovalPending() {
|
||||
dialog.close();
|
||||
dialog.value.close();
|
||||
}
|
||||
</script>
|
||||
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue