Skip to content

Commit

Permalink
New condition : fix issue in control
Browse files Browse the repository at this point in the history
  • Loading branch information
bcivel committed Aug 15, 2024
1 parent 0a2b34f commit e2b8628
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 @@ -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));
}
}
Expand Down

0 comments on commit e2b8628

Please sign in to comment.