mirror of
https://github.com/apache/nifi.git
synced 2025-02-16 15:06:00 +00:00
NIFI-2041:
- Fixing issue when attempting to refresh Controller Services when scoped by Process Group. - This closes #535
This commit is contained in:
parent
b3de8f76fe
commit
6e74c10f49
@ -132,7 +132,7 @@ nf.ProcessGroupConfiguration = (function () {
|
||||
|
||||
// register the click listener for the save button
|
||||
$('#process-group-configuration-save').off('click').on('click', function () {
|
||||
saveConfiguration(response.revision.version, processGroupResponse.id);
|
||||
saveConfiguration(response.revision.version, response.id);
|
||||
});
|
||||
} else {
|
||||
if (response.accessPolicy.canRead) {
|
||||
@ -247,7 +247,7 @@ nf.ProcessGroupConfiguration = (function () {
|
||||
showConfiguration: function (groupId) {
|
||||
// update the click listener
|
||||
$('#process-group-configuration-refresh-button').off('click').on('click', function () {
|
||||
loadConfiguration(groupId).done(showConfiguration);
|
||||
loadConfiguration(groupId);
|
||||
});
|
||||
|
||||
// update the new controller service click listener
|
||||
|
Loading…
x
Reference in New Issue
Block a user