From e2b862815db15179bb4169db68e169ab49da3d1d Mon Sep 17 00:00:00 2001 From: Benoit CIVEL Date: Thu, 15 Aug 2024 22:04:38 +0200 Subject: [PATCH] New condition : fix issue in control --- 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 686b208f7..859458c79 100644 --- a/source/src/main/webapp/js/pages/TestCaseScript.js +++ b/source/src/main/webapp/js/pages/TestCaseScript.js @@ -1501,7 +1501,7 @@ function appendActionsForConditionCombobox(combo, operator){ .text("Step " + steps[s].sort + " - Action " + actions[a].sort + " - Control " + controls[c].sort + " - " + controls[c].description) .attr("actionId", actions[a].actionId) .attr("stepId", steps[s].stepId) - .attr("controlId", controls[c].stepId) + .attr("controlId", controls[c].controlId) .val(steps[s].stepId + "-" + actions[a].actionId+ "-" + controls[c].controlId)); } }