feat: upgrade empty states with welcome message and column placeholders

This commit is contained in:
Your Name
2026-02-15 20:33:16 +02:00
parent fffa565423
commit e4edc201b9
2 changed files with 18 additions and 7 deletions

View File

@@ -99,6 +99,11 @@ export function KanbanColumn({ column, onCardClick }: KanbanColumnProps) {
</li>
);
})}
{column.cardIds.length === 0 && (
<li className="flex min-h-[60px] items-center justify-center rounded-md border border-dashed border-pylon-text-secondary/20 text-xs text-pylon-text-secondary/50">
Drop or add a card
</li>
)}
</ul>
</ScrollArea>
</SortableContext>