Skip to content

Commit

Permalink
Improved navigation between execution and script page (small fix).
Browse files Browse the repository at this point in the history
  • Loading branch information
vertigo17 committed Apr 1, 2024
1 parent 85b9ba9 commit 921ced0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/src/main/webapp/js/pages/TestCaseScript.js
Original file line number Diff line number Diff line change
Expand Up @@ -1616,7 +1616,7 @@ function showStepUsesLibraryInConfirmationModal(object) {
success: function (data) {
var content = "";
for (var i = 0; i < data.step.length; i++) {
content += "<a target='_blank' href='./TestCaseScript.jsp?test=" + encodeURI(data.step[i].test) + "&testcase=" + encodeURI(data.step[i].testcase) + "&stepId=" + encodeURI(data.step[i].step) + "'>" + data.step[i].test + " - " + data.step[i].testcase + " - " + data.step[i].sort + " - " + data.step[i].description + "</a><br/>";
content += "<a target='_blank' href='./TestCaseScript.jsp?test=" + encodeURI(data.step[i].test) + "&testcase=" + encodeURI(data.step[i].testcase) + "&stepId=" + encodeURI(data.step[i].stepId) + "'>" + data.step[i].test + " - " + data.step[i].testcase + " - " + data.step[i].sort + " - " + data.step[i].description + "</a><br/>";
}
$("#confirmationModal #otherStepThatUseIt").empty().append(content);
}
Expand Down

0 comments on commit 921ced0

Please sign in to comment.