Add debugging logs to BacklogView
This commit is contained in:
parent
67c6b83a78
commit
c0ca8721e8
@ -56,18 +56,12 @@
|
|||||||
{
|
{
|
||||||
"id": "2",
|
"id": "2",
|
||||||
"title": "MoodWeave App Idea",
|
"title": "MoodWeave App Idea",
|
||||||
"description": "Social mood tracking with woven visualizations",
|
"sprintId": "1771551323429",
|
||||||
"type": "idea",
|
"projectId": "1",
|
||||||
"status": "backlog",
|
"status": "backlog",
|
||||||
"priority": "medium",
|
"priority": "medium",
|
||||||
"projectId": "1",
|
"type": "idea",
|
||||||
"createdAt": "2026-02-18T17:01:23.109Z",
|
"updatedAt": "2026-02-20T02:15:46.591Z"
|
||||||
"updatedAt": "2026-02-18T17:01:23.109Z",
|
|
||||||
"comments": [],
|
|
||||||
"tags": [
|
|
||||||
"ios",
|
|
||||||
"social"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "3",
|
"id": "3",
|
||||||
@ -456,7 +450,7 @@
|
|||||||
"updatedAt": "2026-02-20T01:52:57.259Z"
|
"updatedAt": "2026-02-20T01:52:57.259Z"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"lastUpdated": 1771552377259,
|
"lastUpdated": 1771553746591,
|
||||||
"sprints": [
|
"sprints": [
|
||||||
{
|
{
|
||||||
"name": "Sprint 1",
|
"name": "Sprint 1",
|
||||||
|
|||||||
@ -312,6 +312,7 @@ export function BacklogView() {
|
|||||||
.sort((a, b) => new Date(a.startDate).getTime() - new Date(b.startDate).getTime())
|
.sort((a, b) => new Date(a.startDate).getTime() - new Date(b.startDate).getTime())
|
||||||
.map((sprint) => {
|
.map((sprint) => {
|
||||||
const sprintTasks = tasks.filter((t) => t.sprintId === sprint.id)
|
const sprintTasks = tasks.filter((t) => t.sprintId === sprint.id)
|
||||||
|
console.log(`Sprint ${sprint.name}: ${sprintTasks.length} tasks`, sprintTasks.map(t => t.title))
|
||||||
return (
|
return (
|
||||||
<div key={sprint.id} id={`sprint-${sprint.id}`}>
|
<div key={sprint.id} id={`sprint-${sprint.id}`}>
|
||||||
<TaskSection
|
<TaskSection
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user