Allow sorting widget_cards on custom pages

This commit is contained in:
taitus
2023-10-27 10:59:13 +02:00
parent f795c18bec
commit 4e9d5d8c5a
2 changed files with 6 additions and 3 deletions

View File

@@ -8,7 +8,7 @@ class PagesController < ApplicationController
@custom_page = SiteCustomization::Page.published.find_by(slug: params[:id])
if @custom_page.present?
@cards = @custom_page.cards
@cards = @custom_page.cards.sort_by_order
render action: :custom_page
else
render action: params[:id].split(".").first