v0.1.3: minor fixes #4

Merged
HEL merged 3 commits from dev into main 2025-03-02 15:10:43 +00:00
Showing only changes of commit cef66f2bd4 - Show all commits

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()
}