From 008b5fd1a0dffd8b901c29621aa5db30a7b7e45b Mon Sep 17 00:00:00 2001 From: kOaDT Date: Sun, 8 Feb 2026 21:54:44 +0100 Subject: [PATCH] fix: prevent long card titles from overflowing column width (#367) --- apps/web/src/views/board/components/Card.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/src/views/board/components/Card.tsx b/apps/web/src/views/board/components/Card.tsx index 74af2a87..8372a62d 100644 --- a/apps/web/src/views/board/components/Card.tsx +++ b/apps/web/src/views/board/components/Card.tsx @@ -66,8 +66,8 @@ const Card = ({ const hasDueDate = !!dueDate; return ( -
- {title} +
+ {title} {labels.length || members.length || checklists.length > 0 ||