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

This commit is contained in:
Scott Aslan 2016-09-28 16:47:35 -04:00 committed by Matt Gilman
parent 1a24f5f34c
commit e230e50f9d
1 changed files with 2 additions and 0 deletions

View File

@ -2931,6 +2931,8 @@ nf.SummaryTable = (function () {
$('#total-items').text(nf.Common.formatInteger(inputPortItems.length)); $('#total-items').text(nf.Common.formatInteger(inputPortItems.length));
} else if ($('#output-port-summary-table').is(':visible')) { } else if ($('#output-port-summary-table').is(':visible')) {
$('#total-items').text(nf.Common.formatInteger(outputPortItems.length)); $('#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 { } else {
$('#total-items').text(nf.Common.formatInteger(remoteProcessGroupItems.length)); $('#total-items').text(nf.Common.formatInteger(remoteProcessGroupItems.length));
} }