Commit 09d00563af8168de14daca9193a6f708e5563870
Exists in
master
and in
4 other branches
Merge branch 'improve/show_issue_state' of /home/git/repositories/gitlab/gitlabhq
Showing
1 changed file
with
3 additions
and
1 deletions
Show diff stats
app/views/projects/issues/show.html.haml
... | ... | @@ -33,6 +33,8 @@ |
33 | 33 | %h4.box-title |
34 | 34 | - if @issue.closed? |
35 | 35 | .state-label.state-label-red Closed |
36 | + - else | |
37 | + .state-label.state-label-green Open | |
36 | 38 | = gfm escape_once(@issue.title) |
37 | 39 | |
38 | 40 | .ui-box-body |
... | ... | @@ -71,4 +73,4 @@ |
71 | 73 | - @issue.participants.each do |participant| |
72 | 74 | = link_to_member(@project, participant, name: false, size: 24) |
73 | 75 | |
74 | 76 | -.voting_notes#notes= render "projects/notes/notes_with_form" |
77 | +.voting_notes#notes= render "projects/notes/notes_with_form" | |
75 | 78 | \ No newline at end of file | ... | ... |