From 921ced0a064d359a09657a7231416fb107656dc0 Mon Sep 17 00:00:00 2001 From: Benoit DUMONT Date: Mon, 1 Apr 2024 14:28:17 +0200 Subject: [PATCH] Improved navigation between execution and script page (small fix). --- source/src/main/webapp/js/pages/TestCaseScript.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/src/main/webapp/js/pages/TestCaseScript.js b/source/src/main/webapp/js/pages/TestCaseScript.js index d0a1ad1d0..a87b645a2 100644 --- a/source/src/main/webapp/js/pages/TestCaseScript.js +++ b/source/src/main/webapp/js/pages/TestCaseScript.js @@ -1616,7 +1616,7 @@ function showStepUsesLibraryInConfirmationModal(object) { success: function (data) { var content = ""; for (var i = 0; i < data.step.length; i++) { - content += "" + data.step[i].test + " - " + data.step[i].testcase + " - " + data.step[i].sort + " - " + data.step[i].description + "
"; + content += "" + data.step[i].test + " - " + data.step[i].testcase + " - " + data.step[i].sort + " - " + data.step[i].description + "
"; } $("#confirmationModal #otherStepThatUseIt").empty().append(content); }