Sun, 06 Oct 2024 18:04:14 +0200
add issue status to suggestions for adding relations - resolves #450
--- a/src/main/webapp/WEB-INF/changelogs/changelog-de.jspf Sun Oct 06 17:39:35 2024 +0200 +++ b/src/main/webapp/WEB-INF/changelogs/changelog-de.jspf Sun Oct 06 18:04:14 2024 +0200 @@ -28,6 +28,7 @@ <ul> <li>Die Vorgangsliste zeigt nun die Komponente, wenn kein Filter auf Komponenten aktiv ist.</li> + <li>Vorgangsstatus zur Vorschlagsliste für das Erstellen einer Vorgangsbeziehung hinzugefügt.</li> <li>Verbesserte Anordnung der Buttons zum Erstellen neuer Versionen oder Komponenten.</li> <li>Kritischen Fehler behoben, bei dem das Speichern eines aus der globalen Liste geöffneten Vorgangs zum Verlust aller Daten dieses Vorgangs führte.</li>
--- a/src/main/webapp/WEB-INF/changelogs/changelog.jspf Sun Oct 06 17:39:35 2024 +0200 +++ b/src/main/webapp/WEB-INF/changelogs/changelog.jspf Sun Oct 06 18:04:14 2024 +0200 @@ -28,6 +28,7 @@ <ul> <li>Add component tag to issue list when no component filter is active.</li> + <li>Add issue status to the suggestions for creating an issue relation.</li> <li>Improve position of buttons for creating new versions or components.</li> <li>Fix critical issue where saving an issue from the global list erases all data for that issue.</li> <li>Fix missing localization for issue status and category in RSS feed.</li>
--- a/src/main/webapp/WEB-INF/jsp/issue-view.jsp Sun Oct 06 17:39:35 2024 +0200 +++ b/src/main/webapp/WEB-INF/jsp/issue-view.jsp Sun Oct 06 18:04:14 2024 +0200 @@ -223,7 +223,7 @@ <input name="issue" list="linkable-issues" autocomplete="off"> <datalist id="linkable-issues"> <c:forEach var="linkableIssue" items="${viewmodel.linkableIssues}"> - <option value="#${linkableIssue.id} - <c:out value="${linkableIssue.subject}"/> (<fmt:message key="issue.category.${linkableIssue.category}" />)"></option> + <option value="#${linkableIssue.id} - <c:out value="${linkableIssue.subject}"/> (<fmt:message key="issue.category.${linkableIssue.category}" /> | <fmt:message key="issue.status.${linkableIssue.status}" />)"></option> </c:forEach> </datalist> </td>