NIFI-250: - Removing extra call to show configuration dialog. Project: http://git-wip-us.apache.org/repos/asf/incubator-nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-nifi/commit/97632fbc Tree: http://git-wip-us.apache.org/repos/asf/incubator-nifi/tree/97632fbc Diff: http://git-wip-us.apache.org/repos/asf/incubator-nifi/diff/97632fbc
Branch: refs/heads/NIFI-250 Commit: 97632fbce67850c66b765f667ec2a1ed6e540914 Parents: 23465a1 Author: Matt Gilman <[email protected]> Authored: Tue Mar 31 12:12:01 2015 -0400 Committer: Matt Gilman <[email protected]> Committed: Tue Mar 31 12:12:01 2015 -0400 ---------------------------------------------------------------------- .../src/main/webapp/js/nf/canvas/nf-controller-service.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/97632fbc/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-controller-service.js ---------------------------------------------------------------------- diff --git a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-controller-service.js b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-controller-service.js index 1a1de6e..7fb3eba 100644 --- a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-controller-service.js +++ b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-controller-service.js @@ -1642,7 +1642,7 @@ nf.ControllerService = (function () { } // show the dialog - controllerServiceDialog.modal('setButtonModel', buttons).modal('show'); + controllerServiceDialog.modal('setButtonModel', buttons); // load the property table $('#controller-service-properties').propertytable('loadProperties', controllerService.properties, controllerService.descriptors, controllerServiceHistory.propertyHistory);
