summaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorGo MAEDA <maeda@farend.jp>2021-03-25 04:21:14 +0000
committerGo MAEDA <maeda@farend.jp>2021-03-25 04:21:14 +0000
commit8e3a857802c5f529ba4a4f62065d13cdc0be7a9f (patch)
treee193935d6dca9d440e347ac62121c58a2fd8c61a /app
parent4ac49e0d0685de06c78706c4f5bfe70d480400ea (diff)
downloadredmine-8e3a857802c5f529ba4a4f62065d13cdc0be7a9f.tar.gz
redmine-8e3a857802c5f529ba4a4f62065d13cdc0be7a9f.zip
Restore Copy button to its original location (#34714).
Patch by Mizuki ISHIKAWA. git-svn-id: http://svn.redmine.org/redmine/trunk@20842 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r--app/views/issues/_action_menu.html.erb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/issues/_action_menu.html.erb b/app/views/issues/_action_menu.html.erb
index a1dcd6312..1c0dd0545 100644
--- a/app/views/issues/_action_menu.html.erb
+++ b/app/views/issues/_action_menu.html.erb
@@ -5,10 +5,10 @@
<%= link_to l(:button_log_time), new_issue_time_entry_path(@issue),
:class => 'icon icon-time-add' if User.current.allowed_to?(:log_time, @project) %>
<%= watcher_link(@issue, User.current) %>
+<%= link_to l(:button_copy), project_copy_issue_path(@project, @issue),
+ :class => 'icon icon-copy' if User.current.allowed_to?(:copy_issues, @project) && Issue.allowed_target_projects.any? %>
<%= actions_dropdown do %>
<%= copy_object_url_link(issue_url(@issue, only_path: false)) %>
- <%= link_to l(:button_copy), project_copy_issue_path(@project, @issue),
- :class => 'icon icon-copy' if User.current.allowed_to?(:copy_issues, @project) && Issue.allowed_target_projects.any? %>
<%= link_to l(:button_delete), issue_path(@issue),
:data => {:confirm => issues_destroy_confirmation_message(@issue)},
:method => :delete, :class => 'icon icon-del' if @issue.deletable? %>