Limit the title in the shareview to 2 lines max (#90)

This commit is contained in:
Matt Rubens 2025-06-09 22:15:17 -04:00 committed by GitHub
parent e129b683a8
commit 852024fca6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -29,7 +29,9 @@ export const SharedTaskView = ({
<CardHeader>
<div className="flex items-center justify-between">
<div>
<CardTitle className="text-xl">{taskTitle}</CardTitle>
<CardTitle className="text-xl line-clamp-2 leading-tight">
{taskTitle}
</CardTitle>
<p className="text-sm text-muted-foreground mt-1">
Shared by {sharedBy.name} {sharedAt.toLocaleDateString()}
</p>