diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-graph.js b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-graph.js index 0382a39c24..e7a62bd55c 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-graph.js +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-graph.js @@ -204,7 +204,7 @@ nfLabel.init(nfConnectable, nfDraggable, nfSelectable, nfContextMenu, nfQuickSelect); nfFunnel.init(nfConnectable, nfDraggable, nfSelectable, nfContextMenu); nfPort.init(nfConnectable, nfDraggable, nfSelectable, nfContextMenu, nfQuickSelect); - nfRemoteProcessGroup.init(nfConnectable, nfDraggable, nfSelectable, nfContextMenu); + nfRemoteProcessGroup.init(nfConnectable, nfDraggable, nfSelectable, nfContextMenu, nfQuickSelect); nfProcessGroup.init(nfConnectable, nfDraggable, nfSelectable, nfContextMenu); nfProcessor.init(nfConnectable, nfDraggable, nfSelectable, nfContextMenu, nfQuickSelect); nfConnection.init(nfSelectable, nfContextMenu, nfQuickSelect, nfConnectionConfiguration); diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-remote-process-group.js b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-remote-process-group.js index 34005daa86..a71b1b89e1 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-remote-process-group.js +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-remote-process-group.js @@ -50,6 +50,7 @@ var nfConnectable; var nfDraggable; var nfSelectable; + var nfQuickSelect; var nfContextMenu; var PREVIEW_NAME_LENGTH = 30; @@ -178,7 +179,7 @@ }); // always support selection - remoteProcessGroup.call(nfSelectable.activate).call(nfContextMenu.activate); + remoteProcessGroup.call(nfSelectable.activate).call(nfContextMenu.activate).call(nfQuickSelect.activate); }; // attempt of space between component count and icon for process group contents @@ -863,12 +864,14 @@ * @param nfDraggableRef The nfDraggable module. * @param nfSelectableRef The nfSelectable module. * @param nfContextMenuRef The nfContextMenu module. + * @param nfQuickSelectRef The nfQuickSelect module. */ - init: function (nfConnectableRef, nfDraggableRef, nfSelectableRef, nfContextMenuRef) { + init: function (nfConnectableRef, nfDraggableRef, nfSelectableRef, nfContextMenuRef, nfQuickSelectRef) { nfConnectable = nfConnectableRef; nfDraggable = nfDraggableRef; nfSelectable = nfSelectableRef; nfContextMenu = nfContextMenuRef; + nfQuickSelect = nfQuickSelectRef; remoteProcessGroupMap = d3.map(); removedCache = d3.map();