Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion devboard/client/src/components/Board/TaskCard.jsx
Original file line numberDiff line numberDiff line change
Expand Up@@ -175,7 +175,7 @@ const TaskCard = ({ task, index, onSelect }) => {
)}
</div>
{task.assignee?.name && (
<div className="w-5 h-5 rounded-full bg-purple-700 flex items-center justify-center text-[9px] font-bold text-white">
<div title={task.assignee.name} className="w-5 h-5 rounded-full bg-purple-700 flex items-center justify-center text-[9px] font-bold text-white">
{task.assignee.name[0].toUpperCase()}
</div>
)}
Expand Down