diff --git a/src/app/page.tsx b/src/app/page.tsx index e25f04f..c6b8fb5 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -332,7 +332,9 @@ export default function Home() {
- {columnTasks.map((task) => ( + {columnTasks.map((task) => { + const taskProject = projects.find((p) => p.id === task.projectId) + return (
- - {typeLabels[task.type]} - +
+ + {typeLabels[task.type]} + + {taskProject && ( + + {taskProject.name} + + )} +
)