Github user pvillard31 commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2195#discussion_r150066467
--- Diff:
nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/summary/nf-summary-table.js
---
@@ -417,7 +426,7 @@
var markup = '';
if (isInShell) {
- markup += '<div class="pointer go-to fa
fa-long-arrow-right" title="Go To Processor" style="margin-right: 3px;"></div>';
+ markup += '<div class="pointer go-to fa
fa-long-arrow-right" title="Go To ' +
nfCommon.escapeHtml(dataContext.processGroupNamePath) + ' Processor"
style="margin-right: 3px;"></div>';
--- End diff --
I'd suggest:
````Go To Processor in <path>````
instead of:
````Go To <path> Processor````
Or, otherwise, the path should contain the processor name itself but I feel
like it would be redundant.
---