mirror of https://github.com/apache/nifi.git
NIFI-5137 Fixed the path to Controller Service grid item's state
This closes #7833 Signed-off-by: David Handermann <exceptionfactory@apache.org>
This commit is contained in:
parent
ed3a70c985
commit
6daf0abfd4
|
@ -1090,7 +1090,7 @@
|
|||
} else if (target.hasClass('delete-controller-service')) {
|
||||
nfControllerService.promptToDeleteController(serviceTable, controllerServiceEntity);
|
||||
} else if (target.hasClass('view-state-controller-service')) {
|
||||
nfComponentState.showState(controllerServiceEntity, controllerServiceEntity.state === 'DISABLED');
|
||||
nfComponentState.showState(controllerServiceEntity, controllerServiceEntity.component.state === 'DISABLED');
|
||||
} else if (target.hasClass('change-version-controller-service')) {
|
||||
nfComponentVersion.promptForVersionChange(controllerServiceEntity);
|
||||
} else if (target.hasClass('edit-access-policies')) {
|
||||
|
|
Loading…
Reference in New Issue