mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-05 08:10:14 +00:00
Limit the title in the shareview to 2 lines max (#90)
This commit is contained in:
parent
e129b683a8
commit
852024fca6
1 changed files with 3 additions and 1 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue