fix broken link in "create issue" button v1.2.1

Fri, 24 Nov 2023 00:07:26 +0100

author
Mike Becker <universe@uap-core.de>
date
Fri, 24 Nov 2023 00:07:26 +0100
changeset 295
1c31921664c4
parent 294
93a45de7660f
child 296
355c86eaeca5

fix broken link in "create issue" button

build.gradle.kts file | annotate | diff | comparison | revisions
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/project-details.jsp file | annotate | diff | comparison | revisions
src/main/webapp/WEB-INF/jspf/issue-list.jspf file | annotate | diff | comparison | revisions
     1.1 --- a/build.gradle.kts	Mon Oct 30 17:11:28 2023 +0100
     1.2 +++ b/build.gradle.kts	Fri Nov 24 00:07:26 2023 +0100
     1.3 @@ -5,7 +5,7 @@
     1.4      war
     1.5  }
     1.6  group = "de.uapcore"
     1.7 -version = "1.2.0"
     1.8 +version = "1.2.1"
     1.9  
    1.10  repositories {
    1.11      mavenCentral()
     2.1 --- a/src/main/webapp/WEB-INF/changelogs/changelog-de.jspf	Mon Oct 30 17:11:28 2023 +0100
     2.2 +++ b/src/main/webapp/WEB-INF/changelogs/changelog-de.jspf	Fri Nov 24 00:07:26 2023 +0100
     2.3 @@ -24,6 +24,12 @@
     2.4    --%>
     2.5  <%@ page contentType="text/html;charset=UTF-8" %>
     2.6  
     2.7 +<h3>Version 1.2.1</h3>
     2.8 +
     2.9 +<ul>
    2.10 +    <li>Behebt ein Problem, dass das Erstellen von Tickets aus der Ticketansicht unmöglich macht.</li>
    2.11 +</ul>
    2.12 +
    2.13  <h3>Version 1.2</h3>
    2.14  
    2.15  <ul>
     3.1 --- a/src/main/webapp/WEB-INF/changelogs/changelog.jspf	Mon Oct 30 17:11:28 2023 +0100
     3.2 +++ b/src/main/webapp/WEB-INF/changelogs/changelog.jspf	Fri Nov 24 00:07:26 2023 +0100
     3.3 @@ -24,6 +24,12 @@
     3.4    --%>
     3.5  <%@ page contentType="text/html;charset=UTF-8" %>
     3.6  
     3.7 +<h3>Version 1.2.1</h3>
     3.8 +
     3.9 +<ul>
    3.10 +    <li>Fix a problem that prevents creating issues from the issues list.</li>
    3.11 +</ul>
    3.12 +
    3.13  <h3>Version 1.2</h3>
    3.14  
    3.15  <ul>
     4.1 --- a/src/main/webapp/WEB-INF/jsp/project-details.jsp	Mon Oct 30 17:11:28 2023 +0100
     4.2 +++ b/src/main/webapp/WEB-INF/jsp/project-details.jsp	Fri Nov 24 00:07:26 2023 +0100
     4.3 @@ -36,7 +36,7 @@
     4.4  <%@include file="../jspf/project-header.jspf"%>
     4.5  
     4.6  <div>
     4.7 -    <a href=".${issuesHref}-/create" class="button"><fmt:message key="button.issue.create"/></a>
     4.8 +    <a href="${issuesHref}-/create" class="button"><fmt:message key="button.issue.create"/></a>
     4.9      <button onclick="toggleProjectDetails()" id="toggle-details-button"><fmt:message key="button.project.details"/></button>
    4.10  </div>
    4.11  
     5.1 --- a/src/main/webapp/WEB-INF/jspf/issue-list.jspf	Mon Oct 30 17:11:28 2023 +0100
     5.2 +++ b/src/main/webapp/WEB-INF/jspf/issue-list.jspf	Fri Nov 24 00:07:26 2023 +0100
     5.3 @@ -22,7 +22,7 @@
     5.4          <tr>
     5.5              <td>
     5.6                  <span class="phase-${issue.status.phase.number}">
     5.7 -                    <a href="./${issuesHref}${issue.id}">
     5.8 +                    <a href="${issuesHref}${issue.id}">
     5.9                          #${issue.id}&nbsp;-&nbsp;<c:out value="${issue.subject}" />
    5.10                      </a>
    5.11                  </span>

mercurial