diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 50ae58ce9..4a3bbec15 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -10,6 +10,10 @@ nav_order: 6 ## main +* Remove known issue from docs as ActiveScaffold is [now compatible](https://github.com/activescaffold/active_scaffold/pull/743) with ViewComponent. + + *David Löwenfels* + * Add test to document the current behavior for resolving relative translation keys within partial blocks. When rendering a partial, relative translation keys are resolved relative to the partial's own path rather than the caller’s path. This test ensures that this behavior remains consistent. *Oussama Hilal* diff --git a/docs/known_issues.md b/docs/known_issues.md index f0e600979..38444a573 100644 --- a/docs/known_issues.md +++ b/docs/known_issues.md @@ -17,7 +17,3 @@ Calls to form helpers such as `form_with` in ViewComponents [don't use the defau <%= f.text_field :name %> <% end %> ``` - -## Incompatibility with `active_scaffold` - -Due to `active_scaffold`'s [monkey-patching](https://github.com/activescaffold/active_scaffold/blob/0ada8b7a51bf608c4ade18983ce4494c963963f3/lib/active_scaffold/extensions/action_view_rendering.rb) of `render` that hasn't been updated to support renderable objects like ViewComponents, it's impossible to use `active_scaffold` alongside `view_component`.