Skip to content

Commit

Permalink
#451 changing the class_schedules pdf render to not consider letter a…
Browse files Browse the repository at this point in the history
…ccents before sorting by course name
  • Loading branch information
Carlos-Eduardo-Cabral-da-Cunha committed Feb 29, 2024
1 parent 04bb61b commit 50826e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/helpers/concerns/class_schedule_helper_concern.rb
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def prepare_class_schedule_table(

table_data += demand_data

table_data.sort_by! { |e| e[1] }
table_data.sort_by! { |e| I18n.transliterate(e[1]) }

{
star: star,
Expand Down

0 comments on commit 50826e3

Please sign in to comment.