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

markap14 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 04aaf25  NIFI-1121: Use display name for dependent property 
documentation
04aaf25 is described below

commit 04aaf2513102ae9ba2a74aaef9faa70e92ceb37d
Author: Matthew Burgess <[email protected]>
AuthorDate: Tue Dec 1 12:01:36 2020 -0500

    NIFI-1121: Use display name for dependent property documentation
---
 .../org/apache/nifi/documentation/html/HtmlDocumentationWriter.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-documentation/src/main/java/org/apache/nifi/documentation/html/HtmlDocumentationWriter.java
 
b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-documentation/src/main/java/org/apache/nifi/documentation/html/HtmlDocumentationWriter.java
index 3d415e2..938ee9e 100644
--- 
a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-documentation/src/main/java/org/apache/nifi/documentation/html/HtmlDocumentationWriter.java
+++ 
b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-documentation/src/main/java/org/apache/nifi/documentation/html/HtmlDocumentationWriter.java
@@ -574,7 +574,7 @@ public class HtmlDocumentationWriter implements 
DocumentationWriter {
 
                     for (final PropertyDependency dependency : dependencies) {
                         final Set<String> dependentValues = 
dependency.getDependentValues();
-                        final String prefix = (capitalizeThe ? "The" : "the") 
+ " <" + dependency.getPropertyName() + "> Property ";
+                        final String prefix = (capitalizeThe ? "The" : "the") 
+ " <" + dependency.getPropertyDisplayName() + "> Property ";
                         final String suffix;
                         if (dependentValues == null) {
                             suffix = "has a value specified.";

Reply via email to