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/08 15:35:13 UTC

incubator-nifi git commit: NIFI-233: - Fixing the Downstream label for Upstream components from a process group.

Repository: incubator-nifi
Updated Branches:
  refs/heads/develop 9ba8defc0 -> 22596080c


NIFI-233:
- Fixing the Downstream label for Upstream components from a process group.

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

Branch: refs/heads/develop
Commit: 22596080c9ae7d1b285a72f446b54f73c4ed7672
Parents: 9ba8def
Author: Matt Gilman <ma...@gmail.com>
Authored: Thu Jan 8 07:16:45 2015 -0500
Committer: Matt Gilman <ma...@gmail.com>
Committed: Thu Jan 8 07:16:45 2015 -0500

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


http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/22596080/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-go-to.js
----------------------------------------------------------------------
diff --git a/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-go-to.js b/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-go-to.js
index ddc501a..18812c4 100644
--- a/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-go-to.js
+++ b/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-go-to.js
@@ -489,7 +489,7 @@ nf.GoTo = (function () {
                 }
 
                 // show the dialog
-                $('#connections-dialog').modal('setHeaderText', 'Downstream Connections').modal('show');
+                $('#connections-dialog').modal('setHeaderText', 'Upstream Connections').modal('show');
             }).fail(nf.Common.handleAjaxError);
         },