Skip to content

Commit

Permalink
NIFI-5137 Fixed the path to Controller Service grid item's state
Browse files Browse the repository at this point in the history
This closes #7833

Signed-off-by: David Handermann <exceptionfactory@apache.org>
  • Loading branch information
annanys23 authored and exceptionfactory committed Oct 22, 2023
1 parent ed3a70c commit 6daf0ab
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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')) {
Expand Down

0 comments on commit 6daf0ab

Please sign in to comment.