This commit is contained in:
ThatOneCalculator 2022-11-14 20:58:23 -08:00
parent ad8309b51a
commit 512b9a25d7

View File

@ -275,18 +275,10 @@ function onVisibilitychange() {
onMounted(() => { onMounted(() => {
fetch(); fetch();
if (group != null) { definePageMetadata(computed(() => ({
definePageMetadata(computed(() => ({ title: group != null ? group.name : user?.name,
title: group.name, icon: 'ph-chats-teardrop-bold ph-lg',
icon: 'ph-chats-teardrop-bold ph-lg', })));
})));
}
else {
definePageMetadata(computed(() => ({
title: user.name,
icon: 'ph-chats-teardrop-bold ph-lg',
})));
}
}); });
onBeforeUnmount(() => { onBeforeUnmount(() => {