NIFI-3781 - Change tooltip for disabled state Signed-off-by: Scott Aslan <[email protected]>
This closes #2102 Project: http://git-wip-us.apache.org/repos/asf/nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/05700a20 Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/05700a20 Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/05700a20 Branch: refs/heads/master Commit: 05700a20086233cf8dbe7832e165a1959d610a83 Parents: a3401c3 Author: yuri1969 <[email protected]> Authored: Mon Aug 21 18:35:00 2017 +0200 Committer: Scott Aslan <[email protected]> Committed: Mon Aug 21 12:56:19 2017 -0400 ---------------------------------------------------------------------- .../src/main/webapp/js/nf/canvas/nf-controller-services.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/nifi/blob/05700a20/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-controller-services.js ---------------------------------------------------------------------- diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-controller-services.js b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-controller-services.js index 6fff5b5..86bec68 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-controller-services.js +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-controller-services.js @@ -853,7 +853,7 @@ if (definedByCurrentGroup === true) { if (dataContext.component.state === 'ENABLED' || dataContext.component.state === 'ENABLING') { - markup += '<div class="pointer view-controller-service fa fa-gear" title="View Details" style="margin-top: 2px; margin-right: 3px;" ></div>'; + markup += '<div class="pointer view-controller-service fa fa-gear" title="View Configuration" style="margin-top: 2px; margin-right: 3px;" ></div>'; markup += '<div class="pointer disable-controller-service icon icon-enable-false" title="Disable" style="margin-top: 2px; margin-right: 3px;" ></div>'; } else if (dataContext.component.state === 'DISABLED') { markup += '<div class="pointer edit-controller-service fa fa-gear" title="Configure" style="margin-top: 2px; margin-right: 3px;" ></div>';
