Fixed empty option validation error
This commit is contained in:
parent
4806459b3e
commit
0c5ce83cdf
@ -1153,7 +1153,7 @@ module ApplicationHelper
|
|||||||
|
|
||||||
# make sure that we have an empty option if the select is required
|
# make sure that we have an empty option if the select is required
|
||||||
if options[:required] && options[:options].first.present? && options[:options].first.last.present?
|
if options[:required] && options[:options].first.present? && options[:options].first.last.present?
|
||||||
option_list = ('<option value=""> </option>' + option_list).html_safe
|
option_list = ('<option value=""> </option>' + option_list).html_safe
|
||||||
end
|
end
|
||||||
html += select_tag(name, option_list, input_options)
|
html += select_tag(name, option_list, input_options)
|
||||||
else
|
else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user