diff options
author | Go MAEDA <maeda@farend.jp> | 2021-01-17 02:23:14 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2021-01-17 02:23:14 +0000 |
commit | 4d3dec2dc0156369b789c8c51557c2c7001854ed (patch) | |
tree | 357673ceae1a3542361ffe6119d6620536c6400c /app/views | |
parent | 85193e8d10a495ba0d9d3fd66bfab1f65c5acc44 (diff) | |
download | redmine-4d3dec2dc0156369b789c8c51557c2c7001854ed.tar.gz redmine-4d3dec2dc0156369b789c8c51557c2c7001854ed.zip |
Web browser freezes when displaying a workflow page with a large number of issue statuses (#34247).
Patch by Marius BALTEANU.
git-svn-id: http://svn.redmine.org/redmine/trunk@20717 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/workflows/_form.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/workflows/_form.html.erb b/app/views/workflows/_form.html.erb index 32639753c..429ccb4e6 100644 --- a/app/views/workflows/_form.html.erb +++ b/app/views/workflows/_form.html.erb @@ -40,7 +40,7 @@ </td> <% for new_status in @statuses -%> <% checked = (old_status == new_status) || (transition_counts[[old_status, new_status]] > 0) %> - <td class="<%= checked ? 'enabled' : '' %>" title="<%= old_status_name %> » <%= new_status.name %>"> + <td class="no-tooltip <%= checked ? 'enabled' : '' %>" title="<%= old_status_name %> » <%= new_status.name %>"> <%= transition_tag transition_counts[[old_status, new_status]], old_status, new_status, name %> </td> <% end -%> |