This commit is contained in:
Jorge Manrubia
2025-04-04 17:01:30 +02:00
parent 4ac2511771
commit a7fc325184
2 changed files with 2 additions and 6 deletions
@@ -22,9 +22,7 @@ class Assignments::TogglesController < ApplicationController
respond_to do |format|
format.turbo_stream do
render turbo_stream: turbo_stream.replace([ @bubble, :assignees ],
partial: "bubbles/cards/perma/assignees",
locals: { bubble: @bubble })
render turbo_stream: turbo_stream.replace([ @bubble, :assignees ], partial: "bubbles/cards/perma/assignees", locals: { bubble: @bubble })
end
end
end
@@ -28,9 +28,7 @@ class Taggings::TogglesController < ApplicationController
respond_to do |format|
format.turbo_stream do
render turbo_stream: turbo_stream.replace([ @bubble, :tags ],
partial: "bubbles/cards/perma/tags",
locals: { bubble: @bubble })
render turbo_stream: turbo_stream.replace([ @bubble, :tags ], partial: "bubbles/cards/perma/tags", locals: { bubble: @bubble })
end
end
end