Dialog formatting fixes

This commit is contained in:
Natsumi
2026-01-11 06:04:01 +13:00
parent 820b86be28
commit f7b2cf51e0
7 changed files with 45 additions and 846 deletions

View File

@@ -243,7 +243,9 @@
const isExportAvatarsListDialogVisible = ref(false);
const isEditInviteMessagesDialogVisible = ref(false);
const isToolsTabVisible = computed(() => {
return useRoute().name === 'tools';
const route = useRoute();
if (!route) return false;
return route.name === 'tools';
});
const showGroupCalendarDialog = () => {