Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-10-07 12:00:38 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-10-07 12:00:38 +0400
commit5501955d26596ea1fe86e49f32eb41d57aec8c6e (patch)
treeda98b79c8d244250fd07c289341031171d2ad60c /app/views/milestones
parent1a2cb531c74e77083628ea1f63e48f6570adbb42 (diff)
parent82425cf358d6abb316dce04dca1567481f57c463 (diff)
Merge pull request #1636 from dosire/consistent_issue_type_order
Reversed order of progress indication so that the text matches the progress bar.
Diffstat (limited to 'app/views/milestones')
-rw-r--r--app/views/milestones/show.html.haml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/milestones/show.html.haml b/app/views/milestones/show.html.haml
index 4d0c9a4c34d..d3b1c092192 100644
--- a/app/views/milestones/show.html.haml
+++ b/app/views/milestones/show.html.haml
@@ -31,9 +31,9 @@
%h5
Progress:
%small
- #{@milestone.issues.opened.count} open
- &ndash;
#{@milestone.issues.closed.count} closed
+ &ndash;
+ #{@milestone.issues.opened.count} open
.progress.progress-success
.bar{style: "width: #{@milestone.percent_complete}%;"}