NIFI-6623 - enter process group before navigating to the controller service

This closes #3695

Signed-off-by: Scott Aslan <scottyaslan@gmail.com>
This commit is contained in:
Rob Fellows 2019-09-05 16:55:12 -04:00 committed by Scott Aslan
parent 710c02c673
commit 9aed19137c
2 changed files with 2 additions and 0 deletions

View File

@ -706,6 +706,7 @@
nfCanvasUtils.showComponent(unauthorizedReferencingComponentEntity.processGroup.id, unauthorizedReferencingComponentEntity.id);
} else if (unauthorizedReferencingComponentEntity.referenceType === 'CONTROLLER_SERVICE') {
nfProcessGroupConfiguration.showConfiguration(unauthorizedReferencingComponentEntity.processGroup.id).done(function () {
nfProcessGroup.enterGroup(unauthorizedReferencingComponentEntity.processGroup.id);
nfProcessGroupConfiguration.selectControllerService(unauthorizedReferencingComponentEntity.id);
});
}

View File

@ -926,6 +926,7 @@
nfCanvasUtils.showComponent(unauthorizedAffectedComponentEntity.processGroup.id, unauthorizedAffectedComponentEntity.id);
} else if (unauthorizedAffectedComponentEntity.referenceType === 'CONTROLLER_SERVICE') {
nfProcessGroupConfiguration.showConfiguration(unauthorizedAffectedComponentEntity.processGroup.id).done(function () {
nfProcessGroup.enterGroup(unauthorizedAffectedComponentEntity.processGroup.id);
nfProcessGroupConfiguration.selectControllerService(unauthorizedAffectedComponentEntity.id);
});
}