Skip to content

Commit

Permalink
Update new-modals.html
Browse files Browse the repository at this point in the history
  • Loading branch information
dlemaignent authored Jun 2, 2022
1 parent 3a5af81 commit 68217da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/resources/templates/fragments/new-modals.html
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ <h5>
<div th:if="${step.changeable == true}" class="form-group mb-3">
<label><span th:text="'Merci de saisir le ' + ${step.maxRecipients != null && step.maxRecipients > 1 ? '(s)' : ''} + 'participant ' + ${step.maxRecipients != null && step.maxRecipients > 1 ? '(s)' : ''} + ' pour l\'étape ' + ${iterator.index + 1}"></span></label>
<select class="select-users" th:id="'recipientEmailsSelect-' + ${form.id} + '_' + ${iterator.index + 1}"
th:multiple="${step.maxRecipients != null && step.maxRecipients > 1}" name="recipientEmails" required="required" th:maxlength="${step.maxRecipients}">
multiple="multiple" name="recipientEmails" required="required" th:maxlength="${step.maxRecipients}">
<option data-placeholder="true"></option>
<th:block th:each="user : ${step.users}">
<option th:if="${user.email != null && user.email != 'generic'}" selected="selected"
Expand Down Expand Up @@ -341,4 +341,4 @@ <h5>
</th:block>
</div>
</div>
</html>
</html>

0 comments on commit 68217da

Please sign in to comment.