Skip to content

Commit cb08feb

Browse files
committed
fix: board view when grouped by status
1 parent a7447b0 commit cb08feb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/react-notion-x/src/third-party/collection-view-board.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,9 @@ function Board({ collectionView, collectionData, collection, padding }) {
104104
{group.value?.value ? (
105105
<Property
106106
schema={schema}
107-
data={[[group.value?.value]]}
107+
data={[
108+
[group.value?.value?.option || group.value?.value]
109+
]}
108110
collection={collection}
109111
/>
110112
) : (

0 commit comments

Comments
 (0)