diff options
author | Go MAEDA <maeda@farend.jp> | 2020-04-13 14:18:55 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2020-04-13 14:18:55 +0000 |
commit | bcb81e0d2cbca834ca3eb044f7f16a9e91b7d33b (patch) | |
tree | f04a74ef71e004509ca631cd7db037716f02924a /app/views | |
parent | 5fe6aa0fc01fba538b1a21a80059fd4f917f193f (diff) | |
download | redmine-bcb81e0d2cbca834ca3eb044f7f16a9e91b7d33b.tar.gz redmine-bcb81e0d2cbca834ca3eb044f7f16a9e91b7d33b.zip |
Show tooltip when hovering on repeat-value link in Field permission tab (#32341).
Patch by Go MAEDA.
git-svn-id: http://svn.redmine.org/redmine/trunk@19694 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/workflows/permissions.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/workflows/permissions.html.erb b/app/views/workflows/permissions.html.erb index 0b27c378d..28a671052 100644 --- a/app/views/workflows/permissions.html.erb +++ b/app/views/workflows/permissions.html.erb @@ -66,7 +66,7 @@ <% for status in @statuses -%> <td class="<%= @permissions[status.id][field].try(:join, ' ') %>" title="<%= name %> (<%= status.name %>)"> <%= field_permission_tag(@permissions, status, field, @roles) %> - <% unless status == @statuses.last %><a href="#" class="repeat-value">»</a><% end %> + <% unless status == @statuses.last %><a href="#" class="repeat-value" title="<%= l(:button_copy) %>">»</a><% end %> </td> <% end -%> </tr> |