Skip to content

Commit

Permalink
ordonnancement des labels dans les exports
Browse files Browse the repository at this point in the history
  • Loading branch information
Benoit-MINT committed Jan 22, 2025
1 parent e098982 commit cbdf9fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/models/columns/dossier_column.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def value(dossier)
when 'groupe_instructeur'
dossier.groupe_instructeur.label
when 'dossier_labels'
dossier.labels.map(&:name).join(' ')
dossier.labels.order(:position).map(&:name).join(' ')
when 'followers_instructeurs'
dossier.followers_instructeurs.map(&:email).join(' ')
end
Expand Down

0 comments on commit cbdf9fa

Please sign in to comment.