Fix test with ordering failures
This commit is contained in:
parent
11d83e7579
commit
0a07e9983a
1 changed files with 6 additions and 6 deletions
|
@ -232,15 +232,15 @@ class Admin::ProceduresController < AdminController
|
|||
|
||||
def path_list
|
||||
json_path_list = ProcedurePath
|
||||
.joins(', procedures')
|
||||
.where("procedures.id = procedure_paths.procedure_id")
|
||||
.where("procedures.archived_at" => nil)
|
||||
.joins(:procedure)
|
||||
.where(procedures: { archived_at: nil })
|
||||
.where("path LIKE ?", "%#{params[:request]}%")
|
||||
.order(:id)
|
||||
.pluck(:path, :administrateur_id)
|
||||
.map do |value|
|
||||
.map do |path, administrateur_id|
|
||||
{
|
||||
label: value.first,
|
||||
mine: value.second == current_administrateur.id
|
||||
label: path,
|
||||
mine: administrateur_id == current_administrateur.id
|
||||
}
|
||||
end.to_json
|
||||
|
||||
|
|
Loading…
Reference in a new issue