markap14 commented on code in PR #7315:
URL: https://github.com/apache/nifi/pull/7315#discussion_r1229681996


##########
nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-process-group-configuration.js:
##########
@@ -316,6 +337,23 @@
                         
$('#read-only-process-group-default-flowfile-expiration').text(processGroup.defaultFlowFileExpiration);
                         
$('#read-only-process-group-default-back-pressure-object-threshold').text(processGroup.defaultBackPressureObjectThreshold);
                         
$('#read-only-process-group-default-back-pressure-data-size-threshold').text(processGroup.defaultBackPressureDataSizeThreshold);
+
+                        // Determine the user-friendly name for the selected 
Log To Own File
+                        var selectedLogToOwnFile;
+                        if (processGroup.logToOwnFile == true) {
+                            selectedLogToOwnFile = "Yes";
+                        } else {
+                            selectedLogToOwnFile = "No";
+                        }

Review Comment:
   We should use True/False, not Yes/No. This keeps us consistent with the rest 
of the app.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@nifi.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to