This is an automated email from the ASF dual-hosted git repository.

exceptionfactory pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git


The following commit(s) were added to refs/heads/main by this push:
     new 572e661d12 NIFI-11901 Added name and version subtitle in Processor 
Details view
572e661d12 is described below

commit 572e661d1271082f6a7aa7195853609127b83dec
Author: Pierre Villard <[email protected]>
AuthorDate: Wed Aug 2 21:21:38 2023 +0200

    NIFI-11901 Added name and version subtitle in Processor Details view
    
    This closes #7563
    
    Signed-off-by: David Handermann <[email protected]>
---
 .../nifi-web/nifi-web-ui/src/main/webapp/js/nf/nf-processor-details.js | 3 +++
 1 file changed, 3 insertions(+)

diff --git 
a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/nf-processor-details.js
 
b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/nf-processor-details.js
index 35077601e9..269ac473cf 100644
--- 
a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/nf-processor-details.js
+++ 
b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/nf-processor-details.js
@@ -221,6 +221,9 @@
                     // record the processor details
                     $('#processor-details').data('processorDetails', details);
 
+                    // add subtitle with component type details
+                    $('#processor-details').modal('setSubtitle', 
nfCommon.formatType(details));
+
                     // populate the processor settings
                     nfCommon.populateField('read-only-processor-id', 
details['id']);
                     nfCommon.populateField('read-only-processor-type', 
nfCommon.formatType(details));

Reply via email to