tabletop-companion/app/views/text_fields/create.turbo_stream.erb

12 lines
442 B
Plaintext
Raw Normal View History

<% content_target = "#{dom_id(@section)}_features" %>
2024-06-14 11:59:35 +00:00
<%= turbo_stream.append(content_target) do %>
<%= render @text_field %>
<% end %>
<% form_target = "#{dom_id(@section)}_add_section" %>
<%= turbo_stream.replace(form_target) do %>
2024-07-03 16:28:09 +00:00
<div id="<%= dom_id(@section) %>_add_section">
2024-06-14 11:59:35 +00:00
<%= render partial: "character_sheet_sections/edit_links", locals: { section: @section, parent: @section.parent_section, id: nil} %>
</div>
<% end %>