mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 23:55:58 +09:00
Merge branch 'fix-setting-page' into preferences-registry
This commit is contained in:
commit
911d8e9916
@ -278,8 +278,11 @@ onUnmounted(() => {
|
|||||||
const emailNotConfigured = computed(() => instance.enableEmail && ($i.email == null || !$i.emailVerified));
|
const emailNotConfigured = computed(() => instance.enableEmail && ($i.email == null || !$i.emailVerified));
|
||||||
|
|
||||||
const pageChanged = (page) => {
|
const pageChanged = (page) => {
|
||||||
if (page == null) return;
|
if (page == null) {
|
||||||
childInfo.value = page[symbols.PAGE_INFO];
|
childInfo.value = null;
|
||||||
|
} else {
|
||||||
|
childInfo.value = page[symbols.PAGE_INFO];
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
defineExpose({
|
defineExpose({
|
||||||
|
Loading…
Reference in New Issue
Block a user