Skip to content

Commit

Permalink
Merge pull request #3168 from DMPRoadmap/bug_3104_template_pre-ticked…
Browse files Browse the repository at this point in the history
…_answers_do_not_download

Bug #3104 - Fix for pre-ticked answers do not appear in Template
  • Loading branch information
briri committed May 3, 2022
2 parents 90090f7 + 5a372e8 commit 1d09e1d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/views/template_exports/template_export.docx.erb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<% if q_format.option_based? %>
<ul>
<% question.question_options.each do |option| %>
<li><%= option.text.chomp.strip %></li>
<li><%= option.text.chomp.strip %><%= option.is_default? ? ' - ' + _('default') : '' %></li>
<% end %>
</ul>
<% end %>
Expand Down
2 changes: 1 addition & 1 deletion app/views/template_exports/template_export.pdf.erb
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
<% if q_format.option_based? %>
<ul>
<% question.question_options.each do |option| %>
<li><%= option.text.chomp.strip %></li>
<li><%= option.text.chomp.strip %><%= option.is_default? ? ' - ' + _('default') : '' %></li>
<% end %>
</ul>
<% end %>
Expand Down

0 comments on commit 1d09e1d

Please sign in to comment.