v0.1.3: minor fixes #4

Merged
HEL merged 3 commits from dev into main 2025-03-02 15:10:43 +00:00
2 changed files with 4 additions and 2 deletions
Showing only changes of commit 2aa80e094a - Show all commits

View File

@ -229,7 +229,9 @@ class Table {
durations[i] = hours durations[i] = hours
total += hours total += hours
parentDurations[i] += hours parentDurations[i] += hours
if (parent.is_productive) {
this.dailyTotals[i] += hours this.dailyTotals[i] += hours
}
}) })
return { return {
id: project.id, id: project.id,

View File

@ -64,7 +64,7 @@
</tr> </tr>
<tr class="day-dates"></tr> <tr class="day-dates"></tr>
<tr class="day-totals"> <tr class="day-totals">
<th colspan="2">TOTAL</th> <th colspan="2">Total Productive</th>
</tr> </tr>
</tbody> </tbody>
</table> </table>