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:
annanys23 2023-10-03 19:32:53 +00:00 committed by exceptionfactory
parent ed3a70c985
commit 6daf0abfd4
No known key found for this signature in database
GPG Key ID: 29B6A52D2AAE8DBA
1 changed files with 1 additions and 1 deletions

View File

@ -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')) {