Merge pull request #4106 from HDinger/fix/12136-custom-fields-are-not-sorted-alphabetically-as-timelines-filter

[12136] Custom fields are not sorted alphabetically as timelines filter
pull/4110/head
ulferts 9 years ago
commit 9e80fee0e1
  1. 2
      app/models/timeline.rb

@ -288,7 +288,7 @@ class Timeline < ActiveRecord::Base
end
def get_custom_fields
project.all_work_package_custom_fields
project.all_work_package_custom_fields.sort_by{ |n| n[:name].downcase }
end
def selected_planning_element_assignee

Loading…
Cancel
Save