Skip to content

Commit

Permalink
remove questions with no answers from results
Browse files Browse the repository at this point in the history
  • Loading branch information
vcutrona committed Oct 24, 2023
1 parent d2a12d1 commit 8700eb3
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@

<div>
<ul>
<li th:each="question : ${questions}">
<li th:each="question : ${questions}"
th:if="${answers.get(question).?[!questionAnswer.text.equals('no')].size() > 0}">
<div>
<span style="font-weight: bold" th:text="${question.question}"></span>
</div>
Expand Down

0 comments on commit 8700eb3

Please sign in to comment.