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 2016/09/29 17:25:49 UTC

nifi git commit: [NIFI-1851] correctly display number of total process groups upon refresh. This closes #1079

Repository: nifi
Updated Branches:
  refs/heads/master 1a24f5f34 -> e230e50f9


[NIFI-1851] correctly display number of total process groups upon refresh. This closes #1079


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

Branch: refs/heads/master
Commit: e230e50f9dea80faaf1177cf5cfc0ab9cfabc353
Parents: 1a24f5f
Author: Scott Aslan <sc...@gmail.com>
Authored: Wed Sep 28 16:47:35 2016 -0400
Committer: Matt Gilman <ma...@gmail.com>
Committed: Thu Sep 29 13:25:19 2016 -0400

----------------------------------------------------------------------
 .../nifi-web-ui/src/main/webapp/js/nf/summary/nf-summary-table.js  | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/nifi/blob/e230e50f/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/summary/nf-summary-table.js
----------------------------------------------------------------------
diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/summary/nf-summary-table.js b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/summary/nf-summary-table.js
index 6ce2bcb..60fea88 100644
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/summary/nf-summary-table.js
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/summary/nf-summary-table.js
@@ -2931,6 +2931,8 @@ nf.SummaryTable = (function () {
                         $('#total-items').text(nf.Common.formatInteger(inputPortItems.length));
                     } else if ($('#output-port-summary-table').is(':visible')) {
                         $('#total-items').text(nf.Common.formatInteger(outputPortItems.length));
+                    } else if ($('#process-group-summary-table').is(':visible')) {
+                        $('#total-items').text(nf.Common.formatInteger(processGroupItems.length));
                     } else {
                         $('#total-items').text(nf.Common.formatInteger(remoteProcessGroupItems.length));
                     }