Skip to content

Commit

Permalink
Added tooltip on Accept notifications.
Browse files Browse the repository at this point in the history
  • Loading branch information
vertigo17 committed Dec 31, 2024
1 parent dad8507 commit 1d4dbcf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions source/src/main/webapp/include/transversalobject/Robot.html
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,13 @@ <h4 class="modal-title" id="editEntryModalLabel" name="editRobotField">Edit Robo
<div class="col-sm-2">
<label for="acceptNotifications" name="acceptNotificationsField">Accept Notifications</label>
<div class="btn-group btn-group-toggle" name="acceptNotifications" id="acceptNotifications" data-toggle="buttons">
<label class="btn btn-default active">
<label class="btn btn-default active" title data-content="Default" data-toggle="popover" data-trigger="hover">
<input type="radio" name="acceptNotifications" id="acceptNotifications0" data-accnotif="0" autocomplete="off"> 0
</label>
<label class="btn btn-default">
<label class="btn btn-default" title data-content="Allow" data-toggle="popover" data-trigger="hover">
<input type="radio" name="acceptNotifications" id="acceptNotifications1" data-accnotif="1" autocomplete="off" > 1
</label>
<label class="btn btn-default">
<label class="btn btn-default" title data-content="Block" data-toggle="popover" data-trigger="hover">
<input type="radio" name="acceptNotifications" id="acceptNotifications2" data-accnotif="2" autocomplete="off"> 2
</label>
</div>
Expand Down
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 @@ -412,7 +412,7 @@ function feedRobotModal(robot, modalId, mode) {
robotObj1.lbexemethod = "BYRANKING";
robotObj1.type = "";
robotObj1.extraParam = "";
robotObj1.acceptNotifications = "";
robotObj1.acceptNotifications = 0;
robotObj1.isAcceptInsecureCerts = true;
var hasPermissions = true;
feedRobotModalData(robotObj1, modalId, mode, hasPermissions);
Expand Down

0 comments on commit 1d4dbcf

Please sign in to comment.