Skip to content

Commit

Permalink
Fix display of billed hours on graph when overage exists.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Nov 10, 2013
1 parent 141ce74 commit bff47ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hermes/js/hermes.js
Expand Up @@ -801,7 +801,7 @@ HermesCore = {
h -= over;

var cell = $('hermesStatText').down('th');
cell.update(h);
cell.update(h + over);
cell = cell.next().update(budget);
cell.next().update(budget - (h + over));

Expand Down

0 comments on commit bff47ce

Please sign in to comment.