Index: app/views/issues/show.html.erb IDEA additional info: Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP <+>UTF-8 =================================================================== --- app/views/issues/show.html.erb (revision 15732) +++ app/views/issues/show.html.erb (revision ) @@ -118,6 +118,8 @@ <% end %> +<%= render partial: 'action_menu_edit' if User.current.wants_comments_in_reverse_order? %> + <% if @journals.present? %>

<%=l(:label_history)%>

@@ -125,17 +127,7 @@
<% end %> - -
-<%= render :partial => 'action_menu' %> - -
-<% if @issue.editable? %> - -<% end %> +<%= render partial: 'action_menu_edit' unless User.current.wants_comments_in_reverse_order? %> <% other_formats_links do |f| %> <%= f.link_to 'Atom', :url => {:key => User.current.rss_key} %> Index: app/views/issues/_action_menu_edit.html.erb IDEA additional info: Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP <+>UTF-8 =================================================================== --- app/views/issues/_action_menu_edit.html.erb (revision ) +++ app/views/issues/_action_menu_edit.html.erb (revision ) @@ -0,0 +1,10 @@ +
+<%= render :partial => 'action_menu' %> + +
+<% if @issue.editable? %> + +<% end %> \ No newline at end of file