mirror of https://github.com/apache/nifi.git
[NIFI-1851] correctly display number of total process groups upon refresh. This closes #1079
This commit is contained in:
parent
1a24f5f34c
commit
e230e50f9d
|
@ -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));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue