aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKasper Timm Hansen <kaspth@gmail.com>2016-05-21 18:36:46 +0200
committerKasper Timm Hansen <kaspth@gmail.com>2016-05-21 18:36:46 +0200
commit571d563813b77bc3aebc387f2992d1deceee0906 (patch)
tree143b00d232ec743d4b9b18fb6ee8c4c083a31038
parent72d0b6968174bbe3bf7107fd695dfe4fcd91056f (diff)
parentae7b5314f115129f4d6f88fb422bd0048a093959 (diff)
downloadrails-571d563813b77bc3aebc387f2992d1deceee0906.tar.gz
rails-571d563813b77bc3aebc387f2992d1deceee0906.tar.bz2
rails-571d563813b77bc3aebc387f2992d1deceee0906.zip
Merge pull request #25101 from maclover7/jm-rm-space-1
Remove space, properly italicize
-rw-r--r--actionview/CHANGELOG.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/actionview/CHANGELOG.md b/actionview/CHANGELOG.md
index 0b40699c77..9d669c7cd8 100644
--- a/actionview/CHANGELOG.md
+++ b/actionview/CHANGELOG.md
@@ -1,19 +1,19 @@
-* `select_tag`'s `include_blank` option for generation for blank option tag, now adds an empty space label,
+* `select_tag`'s `include_blank` option for generation for blank option tag, now adds an empty space label,
when the value as well as content for option tag are empty, so that we confirm with html specification.
Ref: https://www.w3.org/TR/html5/forms.html#the-option-element.
Generation of option before:
-
+
```html
<option value=""></option>
```
-
- Generation of option after:
+
+ Generation of option after:
```html
<option value="" label=" "></option>
```
- *Vipul A M *
+ *Vipul A M*
Please check [5-0-stable](https://github.com/rails/rails/blob/5-0-stable/actionview/CHANGELOG.md) for previous changes.