]> source.dussan.org Git - redmine.git/commitdiff
Disable ":disable_with" for CSV exports (#28482).
authorGo MAEDA <maeda@farend.jp>
Tue, 1 May 2018 03:42:44 +0000 (03:42 +0000)
committerGo MAEDA <maeda@farend.jp>
Tue, 1 May 2018 03:42:44 +0000 (03:42 +0000)
Patch by Marius BALTEANU.

git-svn-id: http://svn.redmine.org/redmine/trunk@17321 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/issues/index.html.erb
app/views/timelog/index.html.erb

index e055fc88f58a74b7cf44983ba2ef2b46eb7a7ba6..005b921386f8d8869e94137d22ea41b570acfbaf 100644 (file)
@@ -44,8 +44,8 @@
   </p>
   <% end %>
   <p class="buttons">
-    <%= submit_tag l(:button_export), :name => nil, :onclick => "hideModal(this);" %>
-    <%= submit_tag l(:button_cancel), :name => nil, :onclick => "hideModal(this);", :type => 'button' %>
+    <%= submit_tag l(:button_export), :name => nil, :onclick => "hideModal(this);", :data => { :disable_with => false } %>
+    <%= submit_tag l(:button_cancel), :name => nil, :onclick => "hideModal(this);", :type => 'button', :data => { :disable_with => false } %>
   </p>
   <% end %>
 </div>
index f777dac308503030be6936ac156ad87b53fa4685..65ca4855d3a5d7483b8b8aec77203f48a5721858 100644 (file)
@@ -32,8 +32,8 @@
     <label><%= radio_button_tag 'c[]', 'all_inline' %> <%= l(:description_all_columns) %></label>
   </p>
   <p class="buttons">
-    <%= submit_tag l(:button_export), :name => nil, :onclick => "hideModal(this);" %>
-    <%= submit_tag l(:button_cancel), :name => nil, :onclick => "hideModal(this);", :type => 'button' %>
+    <%= submit_tag l(:button_export), :name => nil, :onclick => "hideModal(this);", :data => { :disable_with => false } %>
+    <%= submit_tag l(:button_cancel), :name => nil, :onclick => "hideModal(this);", :type => 'button', :data => { :disable_with => false } %>
   </p>
   <% end %>
 </div>