diff options
author | Go MAEDA <maeda@farend.jp> | 2020-04-23 10:13:10 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2020-04-23 10:13:10 +0000 |
commit | 6e232ad13e0060137684de5e2a0be0b2205f63f2 (patch) | |
tree | 54e8e1591bb000dda79e194a1ba50a9cf5f88157 /app/views/issues | |
parent | f19c291b59ee066fe6a458a8b3bb07e472374da6 (diff) | |
download | redmine-6e232ad13e0060137684de5e2a0be0b2205f63f2.tar.gz redmine-6e232ad13e0060137684de5e2a0be0b2205f63f2.zip |
Show open/closed badge on issue page (#33254).
Patch by Marius BALTEANU.
git-svn-id: http://svn.redmine.org/redmine/trunk@19719 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/issues')
-rw-r--r-- | app/views/issues/show.html.erb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/views/issues/show.html.erb b/app/views/issues/show.html.erb index 7c180a4d3..5dcd833ac 100644 --- a/app/views/issues/show.html.erb +++ b/app/views/issues/show.html.erb @@ -1,6 +1,7 @@ <%= render :partial => 'action_menu' %> -<h2><%= issue_heading(@issue) %></h2> +<h2 class="inline-flex"><%= issue_heading(@issue) %></h2> +<%= issue_status_type_badge(@issue.status) %> <div class="<%= @issue.css_classes %> details"> <% if @prev_issue_id || @next_issue_id %> |