Fix forms sorting in modal [SCI-11448]

This commit is contained in:
Anton 2025-01-15 14:38:02 +01:00
parent 06ea469e02
commit 50dc31e487

View file

@ -59,7 +59,7 @@ class FormsController < ApplicationController
end
def published_forms
forms = current_team.forms.active.readable_by_user(current_user).published
forms = current_team.forms.active.readable_by_user(current_user).published.order(name: :asc)
forms = forms.where('forms.name ILIKE ?', "%#{params[:query]}%") if params[:query].present?
forms = forms.page(params[:page])