1
0
Fork 0
mirror of https://github.com/paricafe/misskey.git synced 2025-03-29 20:29:28 -05:00

Merge branch 'fix-setting-page' into preferences-registry

This commit is contained in:
tamaina 2022-04-17 05:25:24 +09:00
commit 911d8e9916

View file

@ -278,8 +278,11 @@ onUnmounted(() => {
const emailNotConfigured = computed(() => instance.enableEmail && ($i.email == null || !$i.emailVerified));
const pageChanged = (page) => {
if (page == null) return;
childInfo.value = page[symbols.PAGE_INFO];
if (page == null) {
childInfo.value = null;
} else {
childInfo.value = page[symbols.PAGE_INFO];
}
};
defineExpose({