summaryrefslogtreecommitdiffstats
path: root/app/views
diff options
context:
space:
mode:
authorGo MAEDA <maeda@farend.jp>2020-04-13 14:18:55 +0000
committerGo MAEDA <maeda@farend.jp>2020-04-13 14:18:55 +0000
commitbcb81e0d2cbca834ca3eb044f7f16a9e91b7d33b (patch)
treef04a74ef71e004509ca631cd7db037716f02924a /app/views
parent5fe6aa0fc01fba538b1a21a80059fd4f917f193f (diff)
downloadredmine-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.erb2
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">&#187;</a><% end %>
+ <% unless status == @statuses.last %><a href="#" class="repeat-value" title="<%= l(:button_copy) %>">&#187;</a><% end %>
</td>
<% end -%>
</tr>