Skip to content

Commit

Permalink
Include unstarted Tracker stories as "ready"
Browse files Browse the repository at this point in the history
  • Loading branch information
textbook committed Apr 14, 2016
1 parent 9ba6f2f commit 7d0e1d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flash/static/scripts/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ var SERVICES = {
tracker: function (pane, data) {
if (data.velocity) { pane.find('.velocity').text(data.velocity); }
if (data.stories) {
pane.find('.ready').text(data.stories.planned || 0);
pane.find('.ready').text(data.stories.planned + data.stories.unstarted || 0);
pane.find('.accepted').text(data.stories.accepted || 0);
pane.find('.in-flight').text(data.stories.started || 0);
pane.find('.completed').text(
Expand Down

0 comments on commit 7d0e1d3

Please sign in to comment.