Commit be307d54 authored by Phil Hughes's avatar Phil Hughes

Merge branch 'fix-time-spent' into 'multiple_assignees_review'

Fix time tracking time spent rendering

See merge request !1764
parents 4cf2f180 55e00747
...@@ -27,7 +27,7 @@ export default class SidebarStore { ...@@ -27,7 +27,7 @@ export default class SidebarStore {
this.timeEstimate = data.time_estimate; this.timeEstimate = data.time_estimate;
this.totalTimeSpent = data.total_time_spent; this.totalTimeSpent = data.total_time_spent;
this.humanTimeEstimate = data.human_time_estimate; this.humanTimeEstimate = data.human_time_estimate;
this.humanTimeSpent = data.human_time_spent; this.humanTotalTimeSpent = data.human_total_time_spent;
} }
addAssignee(assignee) { addAssignee(assignee) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment