Skip to content

Commit

Permalink
fix: task title was overflowing when too long
Browse files Browse the repository at this point in the history
  • Loading branch information
aacevski committed Feb 2, 2025
1 parent 74eabd5 commit 9627cb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/src/components/kanban-board/task-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ function TaskCard({ task }: TaskCardProps) {
>
<div className="flex items-center gap-2 mb-2">
<div className="flex-1">
<h3 className="font-medium text-zinc-900 dark:text-zinc-100 truncate">
<h3 className="font-medium text-zinc-900 dark:text-zinc-100 max-w-65 truncate">
{task.title}
</h3>
</div>
Expand Down

0 comments on commit 9627cb3

Please sign in to comment.