From c699fd4100a27eedaa6e18713ed840226a609478 Mon Sep 17 00:00:00 2001 From: lawvs <18554747+lawvs@users.noreply.github.com> Date: Mon, 25 Jul 2022 18:39:50 +0800 Subject: [PATCH] fix: typo --- libs/components/editor-core/src/recast-block/types/view.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/components/editor-core/src/recast-block/types/view.ts b/libs/components/editor-core/src/recast-block/types/view.ts index c7e957e5bf..acc9c72f55 100644 --- a/libs/components/editor-core/src/recast-block/types/view.ts +++ b/libs/components/editor-core/src/recast-block/types/view.ts @@ -30,11 +30,11 @@ export interface PageView extends BaseView { export interface KanbanView extends BaseView { type: RecastScene.Kanban; - groupBy: RecastPropertyId; + groupBy?: RecastPropertyId; } export interface TableView extends BaseView { - type: RecastScene.Kanban; + type: RecastScene.Table; } export type RecastView = PageView | KanbanView | TableView;