Skip to content

Commit

Permalink
fix: popover not displayed in the executors list in the robot modale.
Browse files Browse the repository at this point in the history
  • Loading branch information
lucashimpens committed Feb 17, 2025
1 parent 363959c commit 57c8237
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions source/src/main/webapp/js/transversalobject/Robot.js
Original file line number Diff line number Diff line change
Expand Up @@ -562,6 +562,12 @@ function loadExecutorsTable(tableBody, executors) {
executor.toDelete = false;
appendExecutorRow(tableBody, executor);
});

//As the executors list is dynamically generated after the global popover initialization, need to init popover again on executors list only.
$('#' + tableBody + ' [data-toggle="popover"]').popover({
'placement': 'auto',
'container': '#listPanelEditExecutors'}
);
}

function appendCapabilityRow(tableBody, capability) {
Expand Down

0 comments on commit 57c8237

Please sign in to comment.