correct error mesages for all question types
This commit is contained in:
@ -1,15 +1,14 @@
|
||||
<% answer_string = answer.try(:answer) || answer %>
|
||||
<%= form.collection_radio_buttons(:answer, question.input_options, :to_s, :to_s, {}, {class: ""}) do | option | %>
|
||||
<%
|
||||
option_id = "#{question.question_id}#{sanitize_to_id(option.value)}"
|
||||
checked = answer_string == option.value ? 'checked' : ''
|
||||
%>
|
||||
|
||||
<%
|
||||
option_id = "#{question.question_id}#{sanitize_to_id(option.value)}"
|
||||
checked = answer_string == option.value ? 'checked' : ''
|
||||
%>
|
||||
|
||||
<div class="">
|
||||
<%= option.radio_button( id: option_id, checked: checked, data: { last: checked } ) %>
|
||||
<%= option.label(for: option_id) %>
|
||||
</div>
|
||||
<div class="">
|
||||
<%= option.radio_button( id: option_id, checked: checked, data: { last: checked } ) %>
|
||||
<%= option.label(for: option_id) %>
|
||||
</div>
|
||||
|
||||
<% end %>
|
||||
|
||||
|
Reference in New Issue
Block a user