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

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


The following commit(s) were added to refs/heads/master by this push:
     new e374d2c  NIFI-6140 - Incorrect title on the read only version of the 
Reporting Task detail dialog
e374d2c is described below

commit e374d2cc30e7ad68aee59722cbb946b3909acba1
Author: Rob Fellows <[email protected]>
AuthorDate: Fri Mar 22 10:57:08 2019 -0400

    NIFI-6140 - Incorrect title on the read only version of the Reporting Task 
detail dialog
    
    This closes #3385
---
 .../nifi-web-ui/src/main/webapp/js/nf/canvas/nf-reporting-task.js     | 4 ++++
 1 file changed, 4 insertions(+)

diff --git 
a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-reporting-task.js
 
b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-reporting-task.js
index 32ea231..4127f1c 100644
--- 
a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-reporting-task.js
+++ 
b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-reporting-task.js
@@ -429,6 +429,8 @@
          */
         showConfiguration: function (reportingTaskEntity) {
             var reportingTaskDialog = $('#reporting-task-configuration');
+
+            reportingTaskDialog.find('.dialog-header 
.dialog-header-text').text('Configure Reporting Task');
             if (reportingTaskDialog.data('mode') === config.readOnly) {
                 // update the visibility
                 $('#reporting-task-configuration 
.reporting-task-read-only').hide();
@@ -643,6 +645,8 @@
          */
         showDetails: function (reportingTaskEntity) {
             var reportingTaskDialog = $('#reporting-task-configuration');
+
+            reportingTaskDialog.find('.dialog-header 
.dialog-header-text').text('Reporting Task Details');
             if (reportingTaskDialog.data('mode') === config.edit) {
                 // update the visibility
                 $('#reporting-task-configuration 
.reporting-task-read-only').show();

Reply via email to