diff options
author | bogdanvlviv <bogdanvlviv@gmail.com> | 2018-03-11 22:22:20 +0200 |
---|---|---|
committer | bogdanvlviv <bogdanvlviv@gmail.com> | 2018-03-12 08:44:50 +0200 |
commit | dd075657d0743046206348e05a5ee4d6d8b3f9fa (patch) | |
tree | 34c181e5e1f081f42c10f37df44d9516a96996b7 /actionview | |
parent | ee01c753a3f6fc459e4215117a92085f47f46833 (diff) | |
download | rails-dd075657d0743046206348e05a5ee4d6d8b3f9fa.tar.gz rails-dd075657d0743046206348e05a5ee4d6d8b3f9fa.tar.bz2 rails-dd075657d0743046206348e05a5ee4d6d8b3f9fa.zip |
Fix CHANGELOGs [ci skip]
- Add missing dots.
- Remove reference to itself on GitHub.
Usually, we add references to fixed issues only in a changelog.
Follow up #32223
Diffstat (limited to 'actionview')
-rw-r--r-- | actionview/CHANGELOG.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/actionview/CHANGELOG.md b/actionview/CHANGELOG.md index 55f2148640..76159b9d28 100644 --- a/actionview/CHANGELOG.md +++ b/actionview/CHANGELOG.md @@ -3,10 +3,10 @@ * Enable select tag helper to mark `prompt` option as `selected` and/or `disabled` for `required` field. Example: - select :post, - :category, - ["lifestyle", "programming", "spiritual"], - { selected: "", disabled: "", prompt: "Choose one" }, + select :post, + :category, + ["lifestyle", "programming", "spiritual"], + { selected: "", disabled: "", prompt: "Choose one" }, { required: true } Placeholder option would be selected and disabled. The HTML produced: @@ -19,7 +19,7 @@ *Sergey Prikhodko* -* Don't enforce UTF-8 by default +* Don't enforce UTF-8 by default. With the disabling of TLS 1.0 by most major websites, continuing to run IE8 or lower becomes increasingly difficult so default to not enforcing |