src/main/webapp/WEB-INF/jsp/issue-form.jsp

changeset 136
7281bdf43c60
parent 134
f47e82cd6077
child 142
c0549bcdf2ab
     1.1 --- a/src/main/webapp/WEB-INF/jsp/issue-form.jsp	Sat Oct 17 20:06:14 2020 +0200
     1.2 +++ b/src/main/webapp/WEB-INF/jsp/issue-form.jsp	Thu Oct 22 11:06:15 2020 +0200
     1.3 @@ -128,7 +128,10 @@
     1.4              <th><fmt:message key="issue.assignee"/></th>
     1.5              <td>
     1.6                  <select name="assignee">
     1.7 -                    <option value="-1"><fmt:message key="placeholder.null-assignee"/></option>
     1.8 +                    <option value="-2" title="<fmt:message key="placeholder.auto-assignee.tooltip"/>"><fmt:message key="placeholder.auto-assignee"/></option>
     1.9 +                    <option value="-1"
    1.10 +                            <c:if test="${issue.id ge 0 and empty issue.assignee}">selected</c:if>
    1.11 +                    ><fmt:message key="placeholder.null-assignee"/></option>
    1.12                      <c:forEach var="user" items="${viewmodel.users}">
    1.13                          <option
    1.14                                  <c:if test="${not empty issue.assignee and user eq issue.assignee}">selected</c:if>

mercurial