Skip to content

Commit

Permalink
replaced combo box into checkbox on Robot modal (regression fix)
Browse files Browse the repository at this point in the history
  • Loading branch information
vertigo17 committed Jul 30, 2024
1 parent a576890 commit a3e9f7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/src/main/webapp/js/pages/RunTest.js
Original file line number Diff line number Diff line change
Expand Up @@ -884,7 +884,7 @@ function loadRobotInfo(robot) {
var nbExe = 0;
for (var i = 0; i < data.contentTable.executors.length; i++) {
var curExecutor = data.contentTable.executors[i];
if (curExecutor.active === "Y") {
if (curExecutor.isActive) {
nbExe++;
if (nbExe < 2) {
ExeHost = curExecutor.host;
Expand Down

0 comments on commit a3e9f7f

Please sign in to comment.