From 572e661d1271082f6a7aa7195853609127b83dec Mon Sep 17 00:00:00 2001 From: Pierre Villard Date: Wed, 2 Aug 2023 21:21:38 +0200 Subject: [PATCH] NIFI-11901 Added name and version subtitle in Processor Details view This closes #7563 Signed-off-by: David Handermann --- .../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));