fix: ensure checklists default to empty array in board view
This commit is contained in:
@@ -535,7 +535,7 @@ export default function BoardPage({ isTemplate }: { isTemplate?: boolean }) {
|
||||
title={card.title}
|
||||
labels={card.labels}
|
||||
members={card.members}
|
||||
checklists={card.checklists}
|
||||
checklists={card.checklists ?? []}
|
||||
/>
|
||||
</Link>
|
||||
)}
|
||||
|
||||
Reference in New Issue
Block a user