未验证 提交 350ae296 编写于 作者: E Eileen M. Uchitelle 提交者: GitHub

Merge pull request #36324 from yoones/fix-unexpected-select-tag-delete-behavior

Fix unexpected select_tag delete behavior when include_blank is present
* Fix `select_tag` so that it doesn't change `options` when `include_blank` is present.
*Younes SERRAJ*
Please check [6-0-stable](https://github.com/rails/rails/blob/6-0-stable/actionview/CHANGELOG.md) for previous changes.
......@@ -137,7 +137,8 @@ def select_tag(name, option_tags = nil, options = {})
html_name = (options[:multiple] == true && !name.to_s.ends_with?("[]")) ? "#{name}[]" : name
if options.include?(:include_blank)
include_blank = options.delete(:include_blank)
include_blank = options[:include_blank]
options = options.except(:include_blank)
options_for_blank_options_tag = { value: "" }
if include_blank == true
......
......@@ -301,6 +301,13 @@ def test_select_tag_with_include_blank
assert_dom_equal expected, actual
end
def test_select_tag_with_include_blank_doesnt_change_options
options = { include_blank: true, prompt: "string" }
expected_options = options.dup
select_tag "places", raw("<option>Home</option><option>Work</option><option>Pub</option>"), options
expected_options.each { |k, v| assert_equal v, options[k] }
end
def test_select_tag_with_include_blank_false
actual = select_tag "places", raw("<option>Home</option><option>Work</option><option>Pub</option>"), include_blank: false
expected = %(<select id="places" name="places"><option>Home</option><option>Work</option><option>Pub</option></select>)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册