made parent empty lines hidden

This commit is contained in:
Louis Heredero 2025-03-02 16:08:14 +01:00
parent 2aa80e094a
commit cef66f2bd4
Signed by: HEL
GPG Key ID: 8D83DE470F8544E7

View File

@ -241,18 +241,20 @@ class Table {
}
})
this.addProject(
parent.id,
parent.name,
parent.project_num,
parentDurations.map(v => v === 0 ? "" : v),
true,
parent.is_productive
)
if (parentDurations.reduce((a, b) => a + b, 0) !== 0) {
this.addProject(
parent.id,
parent.name,
parent.project_num,
parentDurations.map(v => v === 0 ? "" : v),
true,
parent.is_productive
)
projects.filter(p => p.total !== 0).forEach(project => {
this.addProject(project.id, project.name, "", project.durations)
})
projects.filter(p => p.total !== 0).forEach(project => {
this.addProject(project.id, project.name, "", project.durations)
})
}
})
this.updateTotals()
}