Fix keep right order in the stream column

This commit is contained in:
Jorge Manrubia
2025-10-16 14:30:37 +02:00
parent 067007f097
commit e6df694f4b
@@ -3,7 +3,7 @@ class Columns::Cards::Drops::StreamsController < ApplicationController
def create
@card.send_back_to_triage
set_page_and_extract_portion_from @collection.cards.awaiting_triage.reverse_chronologically
set_page_and_extract_portion_from @collection.cards.awaiting_triage.by_last_activity.with_golden_first
render turbo_stream: turbo_stream.replace("the-stream", partial: "collections/show/stream", method: :morph, locals: { collection: @card.collection, page: @page })
end