I have been utilizing the nested_form gem to handle associated entities within my form. Additionally, I am incorporating a wysiwyg editor through the usage of bootsy. However, I have encountered an issue where the nested attributes lack a wysiwyg field functionality. Interestingly, it functions as expected for un-nested entities on the page but not for those that are nested.
<%= nested_form_for @project do |f| %>
<%= f.text_field :name %>
<%= f.bootsy_area :project_description %> ''WORKS''
<%= f.fields_for :tasks do |task_form| %>
<%= task_form.text_field :task_name %>
<%= task_form.bootsy_area :task_description %> ''Do NOT WORKS''
<%= task_form.link_to_remove "Remove this task" %>
<% end %>
<p><%= f.link_to_add "Add a task", :tasks %></p>
<% end %>
The project description displays as a wysiwyg field successfully, while the nested field, task_details, only renders as a regular text area. Any insights or suggestions from others would be greatly appreciated.