Repository: nifi Updated Branches: refs/heads/master dfd04e638 -> fba17159a
[NIFI-3358] remove duplicate calls to nfProcessGroupConfiguration.showConfiguration(). This closes #1540 Project: http://git-wip-us.apache.org/repos/asf/nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/fba17159 Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/fba17159 Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/fba17159 Branch: refs/heads/master Commit: fba17159a94e639bce3b1af367e095c2bda4ab9d Parents: dfd04e6 Author: Scott Aslan <[email protected]> Authored: Thu Feb 23 22:16:07 2017 -0500 Committer: Matt Gilman <[email protected]> Committed: Fri Feb 24 08:05:34 2017 -0500 ---------------------------------------------------------------------- .../canvas/controllers/nf-ng-canvas-graph-controls-controller.js | 4 ---- 1 file changed, 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/nifi/blob/fba17159/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/controllers/nf-ng-canvas-graph-controls-controller.js ---------------------------------------------------------------------- diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/controllers/nf-ng-canvas-graph-controls-controller.js b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/controllers/nf-ng-canvas-graph-controls-controller.js index 2835972..e661338 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/controllers/nf-ng-canvas-graph-controls-controller.js +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/controllers/nf-ng-canvas-graph-controls-controller.js @@ -336,10 +336,6 @@ openConfigureOrDetailsView: function () { var selection = nfCanvasUtils.getSelection(); - if (selection.empty()) { - nfProcessGroupConfiguration.showConfiguration(nfCanvasUtils.getGroupId()); - } - if (nfCanvasUtils.isConfigurable(selection)) { nfActions.showConfiguration(selection); } else if (nfCanvasUtils.hasDetails(selection)) {
