Merge branch 'fix/page-section-block' into 'develop'

fix: [page] adding child blocks to section block

Co-authored-by: sup39 <dev@sup39.dev>

Closes #9530

See merge request firefish/firefish!10617
This commit is contained in:
Kainoa Kanter 2023-10-10 01:04:11 +00:00
commit 696d3c6255
2 changed files with 2 additions and 0 deletions

View File

@ -66,6 +66,7 @@ const props = withDefaults(
}, },
}, },
); );
props.value.children ??= [];
const getPageBlockList = inject<(any) => any>("getPageBlockList"); const getPageBlockList = inject<(any) => any>("getPageBlockList");

View File

@ -40,6 +40,7 @@ const props = withDefaults(
}, },
}, },
); );
props.value.children ??= [];
const getPageBlockList = inject<(any) => any>("getPageBlockList"); const getPageBlockList = inject<(any) => any>("getPageBlockList");