##// END OF EJS Templates
Non working days is an array of strings (#2161)....
Jean-Philippe Lang -
r10533:5fe4aae7ba62
parent child
Show More
@@ -13,7 +13,7
13
13
14 <p><%= setting_select :issue_done_ratio, Issue::DONE_RATIO_OPTIONS.collect {|i| [l("setting_issue_done_ratio_#{i}"), i]} %></p>
14 <p><%= setting_select :issue_done_ratio, Issue::DONE_RATIO_OPTIONS.collect {|i| [l("setting_issue_done_ratio_#{i}"), i]} %></p>
15
15
16 <p><%= setting_multiselect :non_working_week_days, (1..7).map {|d| [day_name(d), d]}, :inline => true %></p>
16 <p><%= setting_multiselect :non_working_week_days, (1..7).map {|d| [day_name(d), d.to_s]}, :inline => true %></p>
17
17
18 <p><%= setting_text_field :issues_export_limit, :size => 6 %></p>
18 <p><%= setting_text_field :issues_export_limit, :size => 6 %></p>
19
19
@@ -223,5 +223,5 thumbnails_size:
223 non_working_week_days:
223 non_working_week_days:
224 serialized: true
224 serialized: true
225 default:
225 default:
226 - 6
226 - '6'
227 - 7
227 - '7'
General Comments 0
You need to be logged in to leave comments. Login now