From 05d365a3997cd89c682461c1190aba60a932c202 Mon Sep 17 00:00:00 2001 From: Go MAEDA Date: Thu, 27 Jun 2019 09:55:33 +0000 Subject: [PATCH] Fix that actions dropdown menu is missing (#30294). Patch by Marius BALTEANU. git-svn-id: http://svn.redmine.org/redmine/trunk@18321 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/views/issues/index.html.erb | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/app/views/issues/index.html.erb b/app/views/issues/index.html.erb index 7d3dc6941..18ec61849 100644 --- a/app/views/issues/index.html.erb +++ b/app/views/issues/index.html.erb @@ -5,6 +5,15 @@ <%= link_to_if_authorized l(:label_settings), {:controller => 'projects', :action => 'settings', :id => @project, :tab => 'issues'}, :class => 'icon icon-settings' if User.current.allowed_to?(:manage_categories, @project) %> + <%= actions_dropdown do %> + <% if @project %> + <%= link_to l(:field_summary), project_issues_report_path(@project) %> + <% end %> + + <% if User.current.allowed_to?(:import_issues, @project, :global => true) %> + <%= link_to l(:button_import), new_issues_import_path %> + <% end %> + <% end %>

<%= @query.new_record? ? l(:label_issue_plural) : @query.name %>

@@ -52,16 +61,6 @@ <%= link_to_function l(:button_cancel), "hideModal(this);" %>

<% end %> - - <%= actions_dropdown do %> - <% if @project %> - <%= link_to l(:field_summary), project_issues_report_path(@project) %> - <% end %> - - <% if User.current.allowed_to?(:import_issues, @project, :global => true) %> - <%= link_to l(:button_import), new_issues_import_path %> - <% end %> - <% end %> <% end %>