No need for the partial indirection

This commit is contained in:
David Heinemeier Hansson
2025-04-05 16:06:44 +02:00
parent d0953d6f87
commit e825f1d33f
2 changed files with 5 additions and 6 deletions
@@ -2,7 +2,6 @@ class Bubbles::AssignmentsController < ApplicationController
include BubbleScoped
def new
render partial: "bubbles/assignment", locals: { bubble: @bubble }
end
def create
@@ -1,13 +1,13 @@
<% cache [ bubble, bubble.bucket ] do %>
<%= turbo_frame_tag bubble, :assignment do %>
<% cache [ @bubble ] do %>
<%= turbo_frame_tag @bubble, :assignment do %>
<dialog class="popup panel flex-column align-start gap-half fill-white shadow" data-dialog-target="dialog">
<strong class="popup__title margin-block-start-half pad-inline-half txt-nowrap">Assign this to…</strong>
<%= form_with url: bubble_assignments_path(bubble), class: "flex flex-column full-width popup__list", data: { controller: "form" } do |form| %>
<% bubble.bucket.users.active.sort_by(&:name).each do |user| %>
<%= form_with url: bubble_assignments_path(@bubble), class: "flex flex-column full-width popup__list", data: { controller: "form" } do |form| %>
<% @bubble.bucket.users.active.sort_by(&:name).each do |user| %>
<div class="btn popup__item">
<%= form.check_box "assignee_id[]", {
checked: bubble.assigned_to?(user),
checked: @bubble.assigned_to?(user),
data: { action: "change->form#submit" },
id: dom_id(user, :assign),
include_hidden: false,