summaryrefslogtreecommitdiffstats
path: root/app/views/custom_fields/_form.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/custom_fields/_form.html.erb')
-rw-r--r--app/views/custom_fields/_form.html.erb9
1 files changed, 7 insertions, 2 deletions
diff --git a/app/views/custom_fields/_form.html.erb b/app/views/custom_fields/_form.html.erb
index 9db6e9045..53e71703d 100644
--- a/app/views/custom_fields/_form.html.erb
+++ b/app/views/custom_fields/_form.html.erb
@@ -82,8 +82,13 @@ when "IssueCustomField" %>
<fieldset><legend><%=l(:label_tracker_plural)%></legend>
<% for tracker in @trackers %>
- <%= check_box_tag "custom_field[tracker_ids][]", tracker.id, (@custom_field.trackers.include? tracker),
- :id => "custom_field_tracker_ids_#{tracker.id}" %><label id="no-css" for="custom_field_tracker_ids_<%=tracker.id%>"><%= h(tracker.name) %></label>
+ <%= check_box_tag "custom_field[tracker_ids][]",
+ tracker.id,
+ (@custom_field.trackers.include? tracker),
+ :id => "custom_field_tracker_ids_#{tracker.id}" %>
+ <label class="no-css" for="custom_field_tracker_ids_<%=tracker.id%>">
+ <%= h(tracker.name) %>
+ </label>
<% end %>
<%= hidden_field_tag "custom_field[tracker_ids][]", '' %>
</fieldset>