diff options
-rw-r--r-- | actionview/CHANGELOG.md | 4 | ||||
-rw-r--r-- | actionview/lib/action_view/base.rb | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/actionview/CHANGELOG.md b/actionview/CHANGELOG.md index ecc02d510b..5e7b271fb9 100644 --- a/actionview/CHANGELOG.md +++ b/actionview/CHANGELOG.md @@ -1,9 +1,13 @@ * ActionView::Template.finalize_compiled_template_methods is deprecated with no replacement. + *tenderlove* + * config.action_view.finalize_compiled_template_methods is deprecated with no replacement. + *tenderlove* + * Ensure unique DOM IDs for collection inputs with float values. Fixes #34974 diff --git a/actionview/lib/action_view/base.rb b/actionview/lib/action_view/base.rb index df87de4406..420136d6de 100644 --- a/actionview/lib/action_view/base.rb +++ b/actionview/lib/action_view/base.rb @@ -271,7 +271,7 @@ module ActionView #:nodoc: raise NotImplementedError, <<~msg Subclasses of ActionView::Base must implement `compiled_method_container` or use the class method `with_empty_template_cache` for constructing - an ActionView::Base subclass thata has an empty cache. + an ActionView::Base subclass that has an empty cache. msg end |