Skip to content

Commit 57c8237

Browse files
committed
fix: popover not displayed in the executors list in the robot modale.
1 parent 363959c commit 57c8237

File tree

1 file changed

+6
-0
lines changed
  • source/src/main/webapp/js/transversalobject

1 file changed

+6
-0
lines changed

source/src/main/webapp/js/transversalobject/Robot.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -562,6 +562,12 @@ function loadExecutorsTable(tableBody, executors) {
562562
executor.toDelete = false;
563563
appendExecutorRow(tableBody, executor);
564564
});
565+
566+
//As the executors list is dynamically generated after the global popover initialization, need to init popover again on executors list only.
567+
$('#' + tableBody + ' [data-toggle="popover"]').popover({
568+
'placement': 'auto',
569+
'container': '#listPanelEditExecutors'}
570+
);
565571
}
566572

567573
function appendCapabilityRow(tableBody, capability) {

0 commit comments

Comments
 (0)