1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-26 10:21:14 +00:00

Fix that selected gantt columns are not displayed with MS Edge Legacy (#33724).

Patch by Yuichi HARADA.


git-svn-id: http://svn.redmine.org/redmine/trunk@19899 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA 2020-07-13 12:24:16 +00:00
parent 575403413a
commit be183e58b9

View File

@ -36,7 +36,7 @@
<%= javascript_tag do %>
$(document).ready(function(){
$('.query-columns').closest('form').submit(function(){
$('#<%= selected_tag_id %> option').prop('selected', true);
$('#<%= selected_tag_id %> option:not(:disabled)').prop('selected', true);
});
});
<% end %>