Files
test_rails_kaungkaung/app/views/tasks/create.turbo_stream.erb

8 lines
240 B
Plaintext

<%= turbo_stream.prepend "active_tasks" do %>
<%= render partial: "tasks/task", locals: { task: @task } %>
<% end %>
<%= turbo_stream.replace "new_task" do %>
<%= render "tasks/form", project: @project, task: Task.new %>
<% end %>