mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-18 14:56:59 +08:00
fix: tags does not exist (#3020)
This commit is contained in:
@@ -194,7 +194,7 @@ export const BlockSuitePageList: React.FC<BlockSuitePageListProps> = ({
|
|||||||
title: pageMeta.title,
|
title: pageMeta.title,
|
||||||
preview,
|
preview,
|
||||||
tags:
|
tags:
|
||||||
page?.meta.tags.map(id => tagOptionMap[id]).filter(v => v != null) ??
|
page?.meta.tags?.map(id => tagOptionMap[id]).filter(v => v != null) ??
|
||||||
[],
|
[],
|
||||||
favorite: !!pageMeta.favorite,
|
favorite: !!pageMeta.favorite,
|
||||||
isPublicPage: !!pageMeta.isPublic,
|
isPublicPage: !!pageMeta.isPublic,
|
||||||
|
|||||||
Reference in New Issue
Block a user