diff options
author | Go MAEDA <maeda@farend.jp> | 2018-04-02 01:42:01 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2018-04-02 01:42:01 +0000 |
commit | a17661e8d80d042da4c1ac0eed218b979e3fbd46 (patch) | |
tree | 199c0992549f89fcfe4ef34dfa867f48cade94fa /app/views/versions | |
parent | ed48b0708a7e0753b2e1f7916775069254c019b2 (diff) | |
download | redmine-a17661e8d80d042da4c1ac0eed218b979e3fbd46.tar.gz redmine-a17661e8d80d042da4c1ac0eed218b979e3fbd46.zip |
Use button as additional option for contextmenu (#26655).
Patch by Felix Gliesche.
git-svn-id: http://svn.redmine.org/redmine/trunk@17252 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/versions')
-rw-r--r-- | app/views/versions/index.html.erb | 1 | ||||
-rw-r--r-- | app/views/versions/show.html.erb | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/app/views/versions/index.html.erb b/app/views/versions/index.html.erb index 2914a6dbc..eeb9f3f06 100644 --- a/app/views/versions/index.html.erb +++ b/app/views/versions/index.html.erb @@ -30,6 +30,7 @@ <tr class="hascontextmenu"> <td class="checkbox"><%= check_box_tag 'ids[]', issue.id, false, :id => nil %></td> <td class="subject"><%= link_to_issue(issue, :project => (@project != issue.project)) %></td> + <td class="buttons"><%= link_to_context_menu %></td> </tr> <% end -%> </table> diff --git a/app/views/versions/show.html.erb b/app/views/versions/show.html.erb index a62b0a1d0..677cc1410 100644 --- a/app/views/versions/show.html.erb +++ b/app/views/versions/show.html.erb @@ -44,6 +44,7 @@ <tr class="issue hascontextmenu"> <td class="checkbox"><%= check_box_tag 'ids[]', issue.id, false, :id => nil %></td> <td class="subject"><%= link_to_issue(issue, :project => (@project != issue.project)) %></td> + <td class="buttons"><%= link_to_context_menu %></td> </tr> <% end %> </table> |