Fri, 24 Nov 2023 00:07:26 +0100
fix broken link in "create issue" button
--- a/build.gradle.kts Mon Oct 30 17:11:28 2023 +0100 +++ b/build.gradle.kts Fri Nov 24 00:07:26 2023 +0100 @@ -5,7 +5,7 @@ war } group = "de.uapcore" -version = "1.2.0" +version = "1.2.1" repositories { mavenCentral()
--- a/src/main/webapp/WEB-INF/changelogs/changelog-de.jspf Mon Oct 30 17:11:28 2023 +0100 +++ b/src/main/webapp/WEB-INF/changelogs/changelog-de.jspf Fri Nov 24 00:07:26 2023 +0100 @@ -24,6 +24,12 @@ --%> <%@ page contentType="text/html;charset=UTF-8" %> +<h3>Version 1.2.1</h3> + +<ul> + <li>Behebt ein Problem, dass das Erstellen von Tickets aus der Ticketansicht unmöglich macht.</li> +</ul> + <h3>Version 1.2</h3> <ul>
--- a/src/main/webapp/WEB-INF/changelogs/changelog.jspf Mon Oct 30 17:11:28 2023 +0100 +++ b/src/main/webapp/WEB-INF/changelogs/changelog.jspf Fri Nov 24 00:07:26 2023 +0100 @@ -24,6 +24,12 @@ --%> <%@ page contentType="text/html;charset=UTF-8" %> +<h3>Version 1.2.1</h3> + +<ul> + <li>Fix a problem that prevents creating issues from the issues list.</li> +</ul> + <h3>Version 1.2</h3> <ul>
--- a/src/main/webapp/WEB-INF/jsp/project-details.jsp Mon Oct 30 17:11:28 2023 +0100 +++ b/src/main/webapp/WEB-INF/jsp/project-details.jsp Fri Nov 24 00:07:26 2023 +0100 @@ -36,7 +36,7 @@ <%@include file="../jspf/project-header.jspf"%> <div> - <a href=".${issuesHref}-/create" class="button"><fmt:message key="button.issue.create"/></a> + <a href="${issuesHref}-/create" class="button"><fmt:message key="button.issue.create"/></a> <button onclick="toggleProjectDetails()" id="toggle-details-button"><fmt:message key="button.project.details"/></button> </div>
--- a/src/main/webapp/WEB-INF/jspf/issue-list.jspf Mon Oct 30 17:11:28 2023 +0100 +++ b/src/main/webapp/WEB-INF/jspf/issue-list.jspf Fri Nov 24 00:07:26 2023 +0100 @@ -22,7 +22,7 @@ <tr> <td> <span class="phase-${issue.status.phase.number}"> - <a href="./${issuesHref}${issue.id}"> + <a href="${issuesHref}${issue.id}"> #${issue.id} - <c:out value="${issue.subject}" /> </a> </span>