Skip to content

Commit

Permalink
#10581 add break between custom Q responses
Browse files Browse the repository at this point in the history
  • Loading branch information
sekmiller committed Jun 25, 2024
1 parent c3bedb0 commit 4340069
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ public String toHtmlFormattedResponse(AuthenticatedUser requestor) {
sb.append("<li>" + BundleUtil.getStringFromBundle("dataset.guestbookResponse.question") + ": "
+ cqr.getCustomQuestion().getQuestionString() + "<br>"
+ BundleUtil.getStringFromBundle("dataset.guestbookResponse.answer") + ": "
+ wrapNullAnswer(cqr.getResponse()) + "</li>\n");
+ wrapNullAnswer(cqr.getResponse()) + "</li>\n<br>");
}
sb.append("</ul>");
return sb.toString();
Expand Down

0 comments on commit 4340069

Please sign in to comment.