add issue status to suggestions for adding relations - resolves #450

Sun, 06 Oct 2024 18:04:14 +0200

author
Mike Becker <universe@uap-core.de>
date
Sun, 06 Oct 2024 18:04:14 +0200
changeset 329
fa7696bafe0d
parent 328
86aea0a1bd1f
child 330
aa16d9a48515

add issue status to suggestions for adding relations - resolves #450

src/main/webapp/WEB-INF/changelogs/changelog-de.jspf file | annotate | diff | comparison | revisions
src/main/webapp/WEB-INF/changelogs/changelog.jspf file | annotate | diff | comparison | revisions
src/main/webapp/WEB-INF/jsp/issue-view.jsp file | annotate | diff | comparison | revisions
--- 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>

mercurial