diff --git a/src/components/KanbanBoard.tsx b/src/components/KanbanBoard.tsx index cc47ab6..60e63c5 100644 --- a/src/components/KanbanBoard.tsx +++ b/src/components/KanbanBoard.tsx @@ -135,7 +135,7 @@ export default function KanbanBoard({ projectId }: Props) { className="w-2 h-2 rounded-full mt-1.5 shrink-0" style={{ background: PRIORITY_COLORS[task.priority] || "#737373" }} /> - {task.title} +
{task.description}
@@ -224,7 +224,7 @@ export default function KanbanBoard({ projectId }: Props) { style={{ background: PRIORITY_COLORS[task.priority] || "#737373" }} title={task.priority} /> - {task.title} +{task.description}
diff --git a/src/components/TaskModal.tsx b/src/components/TaskModal.tsx index a49ae77..56081e7 100644 --- a/src/components/TaskModal.tsx +++ b/src/components/TaskModal.tsx @@ -103,7 +103,7 @@ export default function TaskModal({ task, projectId, onClose, onUpdated, onDelet {title} )} -