diff --git a/dispatcher/static/table.js b/dispatcher/static/table.js index 3e42a8c..e2fa788 100644 --- a/dispatcher/static/table.js +++ b/dispatcher/static/table.js @@ -229,7 +229,9 @@ class Table { durations[i] = hours total += hours parentDurations[i] += hours - this.dailyTotals[i] += hours + if (parent.is_productive) { + this.dailyTotals[i] += hours + } }) return { id: project.id, diff --git a/templates/table.html b/templates/table.html index 0f7631f..7d397ca 100644 --- a/templates/table.html +++ b/templates/table.html @@ -64,7 +64,7 @@ - TOTAL + Total Productive