Browse Source

Fixed empty select option error

development
Godwin 8 years ago
committed by GitHub
parent
commit
436ce0efd8
  1. 2
      app/helpers/application_helper.rb

2
app/helpers/application_helper.rb

@ -1153,7 +1153,7 @@ module ApplicationHelper
# 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?
option_list = ('<option value="" disabled></option>' + option_list).html_safe
option_list = ('<option value=""> </option>' + option_list).html_safe
end
html += select_tag(name, option_list, input_options)
else

Loading…
Cancel
Save