Skip to content

Commit 0b82c79

Browse files
committed
fix: Add min-w-0 class to TaskItem component for better layout handling
-fixes the buttons on the right edge of task items being hidden too early when initial message of that task was too long/big
1 parent 3033d4a commit 0b82c79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webview-ui/src/components/history/TaskItem.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ const TaskItem = ({
6868
</div>
6969
)}
7070

71-
<div className="flex-1">
71+
<div className="flex-1 min-w-0">
7272
{/* Header with metadata */}
7373
<TaskItemHeader item={item} isSelectionMode={isSelectionMode} onDelete={onDelete} />
7474

0 commit comments

Comments
 (0)