Skip to content

Commit

Permalink
make link click target full height
Browse files Browse the repository at this point in the history
  • Loading branch information
alsuren committed Jan 22, 2025
1 parent cf54d7d commit ff3e075
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/linearlite/src/pages/List/IssueRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ function IssueRow({ issue, style }: Props) {
</div>
<Link
to={`/issue/${issue.id}`}
className="flex items-center flex-grow min-w-0"
className="flex items-center flex-grow min-w-0 h-full"
>
<div className="flex-wrap flex-shrink ml-3 overflow-hidden font-medium line-clamp-1 overflow-ellipsis">
{issue.title.slice(0, 3000) || ``}
Expand Down

0 comments on commit ff3e075

Please sign in to comment.