fixes answer bug for input_type: text

This commit is contained in:
Mark Moser
2016-08-11 17:10:51 -05:00
parent df024046ac
commit 356432724b
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
<%
answers = answer.try(:answer) || answer
answers = answer.respond_to?(:answer) ? answer.answer : answer
%>
<label for="answer_text">Enter answer here</label>