diff options
author | Go MAEDA <maeda@farend.jp> | 2019-06-27 09:55:33 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2019-06-27 09:55:33 +0000 |
commit | 05d365a3997cd89c682461c1190aba60a932c202 (patch) | |
tree | 8b30aceb34c01a67673471ef7621782fe93b6701 /app | |
parent | bd6cfb17d637008f9a7784bb72758cf8b9295430 (diff) | |
download | redmine-05d365a3997cd89c682461c1190aba60a932c202.tar.gz redmine-05d365a3997cd89c682461c1190aba60a932c202.zip |
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
Diffstat (limited to 'app')
-rw-r--r-- | app/views/issues/index.html.erb | 19 |
1 files 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 %> </div> <h2><%= @query.new_record? ? l(:label_issue_plural) : @query.name %></h2> @@ -52,16 +61,6 @@ <%= link_to_function l(:button_cancel), "hideModal(this);" %> </p> <% 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 %> </div> <% end %> |