mirror of
https://github.com/meineerde/redmine.git
synced 2025-12-19 15:01:14 +00:00
Fix: Sort issue custom fields by position in tracker views (#28393).
Patch by Gregor Schmidt. git-svn-id: http://svn.redmine.org/redmine/trunk@17237 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
19bcaf28f8
commit
c437d8db61
@ -106,6 +106,6 @@ class TrackersController < ApplicationController
|
||||
return
|
||||
end
|
||||
@trackers = Tracker.sorted.to_a
|
||||
@custom_fields = IssueCustomField.all.sort
|
||||
@custom_fields = IssueCustomField.sorted
|
||||
end
|
||||
end
|
||||
|
||||
@ -21,10 +21,11 @@
|
||||
</p>
|
||||
<%= hidden_field_tag 'tracker[core_fields][]', '' %>
|
||||
|
||||
<% if IssueCustomField.all.any? %>
|
||||
<% @issue_custom_fields = IssueCustomField.sorted %>
|
||||
<% if @issue_custom_fields.present? %>
|
||||
<p>
|
||||
<label><%= l(:label_custom_field_plural) %></label>
|
||||
<% IssueCustomField.all.each do |field| %>
|
||||
<% @issue_custom_fields.each do |field| %>
|
||||
<label class="block">
|
||||
<%= check_box_tag 'tracker[custom_field_ids][]',field.id, @tracker.custom_fields.to_a.include?(field), :id => nil %>
|
||||
<%= field.name %>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user