fix(frontend): Pagesのコンテンツが表示されない・作成や編集ができない問題を修正

Fix #10908
This commit is contained in:
syuilo
2023-05-30 17:37:38 +09:00
parent a6cd97ca9a
commit f2d9e3105d
3 changed files with 23 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
<template>
<div :class="{ [$style.center]: page.alignCenter, [$style.serif]: page.font === 'serif' }">
<XBlock v-for="child in page.content" :key="child.id" :block="child" :h="2"/>
<XBlock v-for="child in page.content" :key="child.id" :page="page" :block="child" :h="2"/>
</div>
</template>