You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by mc...@apache.org on 2015/01/14 19:35:28 UTC

[04/17] incubator-nifi git commit: NIFI-257: - Using the target URI as specified.

NIFI-257:
- Using the target URI as specified.

Project: http://git-wip-us.apache.org/repos/asf/incubator-nifi/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-nifi/commit/b142d7a9
Tree: http://git-wip-us.apache.org/repos/asf/incubator-nifi/tree/b142d7a9
Diff: http://git-wip-us.apache.org/repos/asf/incubator-nifi/diff/b142d7a9

Branch: refs/heads/NIFI-250
Commit: b142d7a9bdecee96bcc7c1b920b3c2dbb748b5e9
Parents: 549c97d
Author: Matt Gilman <ma...@gmail.com>
Authored: Tue Jan 13 15:21:42 2015 -0500
Committer: Matt Gilman <ma...@gmail.com>
Committed: Tue Jan 13 15:21:42 2015 -0500

----------------------------------------------------------------------
 .../web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-actions.js     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/b142d7a9/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-actions.js
----------------------------------------------------------------------
diff --git a/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-actions.js b/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-actions.js
index dc8ca31..5fc94e1 100644
--- a/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-actions.js
+++ b/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-actions.js
@@ -167,7 +167,7 @@ nf.Actions = (function () {
                 var uri = selectionData.component.targetUri;
 
                 if (!nf.Common.isBlank(uri)) {
-                    window.open(encodeURI(uri + '/nifi'));
+                    window.open(encodeURI(uri));
                 } else {
                     nf.Dialog.showOkDialog({
                         dialogContent: 'No target URI defined.'