We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 479a3c1 commit a1a3d25Copy full SHA for a1a3d25
app/views/settings/gtt/_settings.html.erb
@@ -1,6 +1,6 @@
1
<h3><%= l(:select_default_tracker_icon) %></h3>
2
3
-<% Tracker.all.each do |t| %>
+<% Tracker.sorted.each do |t| %>
4
<p>
5
<%= content_tag :label, t.name %>
6
<%= select_tag "settings[tracker_#{t.id}]", "<option>#{@settings["tracker_#{t.id}"]}</option>".html_safe %>
@@ -11,7 +11,7 @@
11
<div class="box tabular settings">
12
<h3><%= l(:select_default_status_color) %></h3>
13
14
-<% IssueStatus.all.sort.each do |t| %>
+<% IssueStatus.sorted.each do |t| %>
15
16
17
<%= color_field_tag "settings[status_#{t.id}]", @settings["status_#{t.id}"] %>
0 commit comments