Commit 5501955d26596ea1fe86e49f32eb41d57aec8c6e
Exists in
master
and in
4 other branches
Merge pull request #1636 from dosire/consistent_issue_type_order
Reversed order of progress indication so that the text matches the progress bar.
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
app/views/milestones/show.html.haml
| @@ -31,9 +31,9 @@ | @@ -31,9 +31,9 @@ | ||
| 31 | %h5 | 31 | %h5 |
| 32 | Progress: | 32 | Progress: |
| 33 | %small | 33 | %small |
| 34 | - #{@milestone.issues.opened.count} open | ||
| 35 | - – | ||
| 36 | #{@milestone.issues.closed.count} closed | 34 | #{@milestone.issues.closed.count} closed |
| 35 | + – | ||
| 36 | + #{@milestone.issues.opened.count} open | ||
| 37 | .progress.progress-success | 37 | .progress.progress-success |
| 38 | .bar{style: "width: #{@milestone.percent_complete}%;"} | 38 | .bar{style: "width: #{@milestone.percent_complete}%;"} |
| 39 | 39 |