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
path: root/app/views
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2012-10-10 21:06:34 +0400
committerRobert Speicher <rspeicher@gmail.com>2012-10-10 21:06:34 +0400
commit7d145adf35b53fae3a512d433f23ee911b4f5d39 (patch)
tree3b82f36e2649d067a97d2d4b7c8703bcccebd099 /app/views
parentce6e5f34d59bf6925170584a6579fb4478cd6e50 (diff)
Move 'closed' attribute to the row instead of the cell
Diffstat (limited to 'app/views')
-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 cbc69fb786b..c113c81f33c 100644
--- a/app/views/milestones/show.html.haml
+++ b/app/views/milestones/show.html.haml
@@ -52,8 +52,8 @@
%li.active= link_to('Open Issues', '#')
%li=link_to('All Issues', '#')
- @issues.each do |issue|
- %tr
- %td{data: {closed: issue.closed}}
+ %tr{data: {closed: issue.closed}}
+ %td
= link_to [@project, issue] do
%span.badge.badge-info ##{issue.id}
&ndash;