From 1424873948a98ab30ac4b5eed35d3de59a54b92a Mon Sep 17 00:00:00 2001 From: Joel Cogen Date: Tue, 23 Jul 2013 14:29:24 +0200 Subject: text_area should handle nil value option like text_field --- actionview/CHANGELOG.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'actionview/CHANGELOG.md') diff --git a/actionview/CHANGELOG.md b/actionview/CHANGELOG.md index ef48540015..b961dce4d1 100644 --- a/actionview/CHANGELOG.md +++ b/actionview/CHANGELOG.md @@ -1,3 +1,17 @@ +* Fix `text_area` to behave like `text_field` when `nil` is given as + value. + + Before: + + f.text_field :field, value: nil #=> + f.text_area :field, value: nil #=> + + After: + + f.text_area :field, value: nil #=> + + *Joel Cogen* + * Element of the `grouped_options_for_select` can optionally contain html attributes as the last element of the array. -- cgit v1.2.3