mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Remove CHANGELOG entry that is already in 7-0-stable
This commit is contained in:
parent
16f026e15a
commit
dae7e46db4
2 changed files with 0 additions and 20 deletions
|
@ -1,16 +1,3 @@
|
|||
* Support `include_hidden:` option in calls to
|
||||
`ActionView::Helper::FormBuilder#file_field` with `multiple: true` to
|
||||
support submitting an empty collection of files.
|
||||
|
||||
```ruby
|
||||
form.file_field :attachments, multiple: true
|
||||
# => <input type="hidden" autocomplete="off" name="post[attachments][]" value="">
|
||||
<input type="file" multiple="multiple" id="post_attachments" name="post[attachments][]">
|
||||
|
||||
form.file_field :attachments, multiple: true, include_hidden: false
|
||||
# => <input type="file" multiple="multiple" id="post_attachments" name="post[attachments][]">
|
||||
```
|
||||
|
||||
*Sean Doyle*
|
||||
|
||||
Please check [7-0-stable](https://github.com/rails/rails/blob/7-0-stable/actionview/CHANGELOG.md) for previous changes.
|
||||
|
|
|
@ -1,10 +1,3 @@
|
|||
* Support transforming empty-ish `has_many_attached` value into `[]` (e.g. `[""]`)
|
||||
|
||||
```ruby
|
||||
@user.highlights = [""]
|
||||
@user.highlights # => []
|
||||
```
|
||||
|
||||
*Sean Doyle*
|
||||
|
||||
Please check [7-0-stable](https://github.com/rails/rails/blob/7-0-stable/activestorage/CHANGELOG.md) for previous changes.
|
||||
|
|
Loading…
Reference in a new issue