aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/lib/action_view/helpers/tags/collection_check_boxes.rb
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2017-11-25 12:36:17 -0500
committerRafael Mendonça França <rafaelmfranca@gmail.com>2017-11-25 12:36:17 -0500
commitd3893ec38ec61282c2598b01a298124356d6b35a (patch)
tree46456f6ac103215cc3c679028d52a9099025e35f /actionview/lib/action_view/helpers/tags/collection_check_boxes.rb
parent8bc9f51ce6eac38efb3f348c5a40fc8f107382f4 (diff)
parent36ac675d2af5838c81afbd7c95b2e403e6366ba5 (diff)
downloadrails-d3893ec38ec61282c2598b01a298124356d6b35a.tar.gz
rails-d3893ec38ec61282c2598b01a298124356d6b35a.tar.bz2
rails-d3893ec38ec61282c2598b01a298124356d6b35a.zip
Merge pull request #29439 from npezza93/set-skip-default-ids
Allow skip_default_ids option to be set in form_with
Diffstat (limited to 'actionview/lib/action_view/helpers/tags/collection_check_boxes.rb')
-rw-r--r--actionview/lib/action_view/helpers/tags/collection_check_boxes.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/actionview/lib/action_view/helpers/tags/collection_check_boxes.rb b/actionview/lib/action_view/helpers/tags/collection_check_boxes.rb
index 455442178e..021a6c0c0c 100644
--- a/actionview/lib/action_view/helpers/tags/collection_check_boxes.rb
+++ b/actionview/lib/action_view/helpers/tags/collection_check_boxes.rb
@@ -12,7 +12,6 @@ module ActionView
def check_box(extra_html_options = {})
html_options = extra_html_options.merge(@input_html_options)
html_options[:multiple] = true
- html_options[:skip_default_ids] = false
@template_object.check_box(@object_name, @method_name, html_options, @value, nil)
end
end