Repository: nifi Updated Branches: refs/heads/master 99d3c3974 -> af27e4070
NIFI-2843: - Removing the View Configuration menu item from the context menu on Process Groups. This closes #1087 Signed-off-by: jpercivall <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/af27e407 Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/af27e407 Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/af27e407 Branch: refs/heads/master Commit: af27e4070b6ec2fb4bb7acfe4c2fd573849c802c Parents: 99d3c39 Author: Matt Gilman <[email protected]> Authored: Fri Sep 30 10:34:43 2016 -0400 Committer: jpercivall <[email protected]> Committed: Thu Oct 20 12:45:37 2016 -0400 ---------------------------------------------------------------------- .../nifi-web-ui/src/main/webapp/js/nf/canvas/nf-canvas-utils.js | 3 --- 1 file changed, 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/nifi/blob/af27e407/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-canvas-utils.js ---------------------------------------------------------------------- diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-canvas-utils.js b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-canvas-utils.js index 56b6a71..1fb262e 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-canvas-utils.js +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-canvas-utils.js @@ -967,9 +967,6 @@ nf.CanvasUtils = (function () { return false; } - if (nf.CanvasUtils.isProcessGroup(selection)) { - return true; - } if (nf.CanvasUtils.canRead(selection) === false) { return false; }
