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,6 +241,7 @@ class Table {
}
})
if (parentDurations.reduce((a, b) => a + b, 0) !== 0) {
this.addProject(
parent.id,
parent.name,
@ -253,6 +254,7 @@ class Table {
projects.filter(p => p.total !== 0).forEach(project => {
this.addProject(project.id, project.name, "", project.durations)
})
}
})
this.updateTotals()
}