##// END OF EJS Templates
Preserve gantt options when changing filters (#12122)....
Jean-Philippe Lang -
r11341:9c2561b59dfc
parent child
Show More
@@ -21,7 +21,7
21 21 <fieldset>
22 22 <legend><%= l(:label_related_issues) %></legend>
23 23 <label>
24 <%= check_box_tag "draw_rels", params["draw_rels"], true %>
24 <%= check_box_tag "draw_rels", params["draw_rels"], params[:set_filter].blank? || params[:draw_rels] %>
25 25 <% rels = [IssueRelation::TYPE_BLOCKS, IssueRelation::TYPE_PRECEDES] %>
26 26 <% rels.each do |rel| %>
27 27 <% color = Redmine::Helpers::Gantt::DRAW_TYPES[rel][:color] %>
@@ -36,7 +36,7
36 36 <fieldset>
37 37 <legend><%= l(:label_gantt_progress_line) %></legend>
38 38 <label>
39 <%= check_box_tag "draw_progress_line", params[:draw_progress_line], false %>
39 <%= check_box_tag "draw_progress_line", params[:draw_progress_line], params[:draw_progress_line] %>
40 40 <%= l(:label_display) %>
41 41 </label>
42 42 </fieldset>
General Comments 0
You need to be logged in to leave comments. Login now