Skip to content

Commit

Permalink
CONDEC-1028: Fix that projectKey was undefined in rationale backlog (#…
Browse files Browse the repository at this point in the history
…744)

* Update version to 2.3.8
  • Loading branch information
kleebaum authored May 20, 2023
1 parent cde69fc commit 26e8712
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>de.uhd.ifi.se.decision</groupId>
<artifactId>management.jira</artifactId>
<version>2.3.7</version>
<version>2.3.8</version>
<organization>
<name>Software Engineering Research Group, Heidelberg University</name>
<url>https://github.com/cures-hub</url>
Expand Down
7 changes: 6 additions & 1 deletion src/main/resources/templates/decisionKnowledgePage.vm
Original file line number Diff line number Diff line change
Expand Up @@ -81,4 +81,9 @@ $webResourceManager.requireResource("de.uhd.ifi.se.decision.management.jira:deci
</div>
</div>
#parse("templates/contextMenu.vm")
#parse("templates/dialogs/knowledgeManagementDialogs.vm")
#parse("templates/dialogs/knowledgeManagementDialogs.vm")
<script>
$(document).ready(function () {
conDecAPI.checkIfProjectKeyIsValid();
});
</script>
1 change: 1 addition & 0 deletions src/main/resources/templates/tabs/overview.vm
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
</div>
<script>
$(document).ready(function () {
conDecAPI.checkIfProjectKeyIsValid();
#if(!$codeFileName && !$knowledgeType)
/* Adds the on click listener on tab opening */
var isOnceClicked = false;
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/templates/tabs/rationaleBacklog.vm
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
</div>
<script>
$(document).ready(function () {
conDecAPI.checkIfProjectKeyIsValid();
#if(!$codeFileName)
/* Inits rationale backlog as the default tab */
conDecRationaleBacklog.initView();
Expand Down

0 comments on commit 26e8712

Please sign in to comment.