Skip to content

Commit

Permalink
fix "Robot modal is not displaying"
Browse files Browse the repository at this point in the history
  • Loading branch information
bcivel committed Sep 19, 2024
1 parent 7d35604 commit cc9af03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/src/main/webapp/js/transversalobject/Robot.js
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ function feedRobotModalData(robot, modalId, mode, hasPermissionsUpdate) {
formEdit.find("#type").val(robot.type);
formEdit.find("#lbexemethod").val(robot.lbexemethod);
formEdit.find("#extraParam").val(robot.extraParam);
formEdit.find("#acceptNotifications").find("input[data-accnotif="+robot.acceptNotifications+"]").click();
formEdit.find("#acceptNotifications").find("input[data-accnotif='"+robot.acceptNotifications+"']").click();
formEdit.find("#isAcceptInsecureCerts").prop("checked", robot.isAcceptInsecureCerts);
loadCapabilitiesTable("editCapabilitiesTableBody", robot.capabilities);
loadExecutorsTable("editExecutorsTableBody", robot.executors);
Expand Down

0 comments on commit cc9af03

Please sign in to comment.