You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@nifi.apache.org by GitBox <gi...@apache.org> on 2019/04/04 19:30:09 UTC

[GitHub] [nifi] rfellows commented on a change in pull request #3390: NIFI-6136 - fix: UI - User and Template bug when page popped out

rfellows commented on a change in pull request #3390: NIFI-6136 - fix: UI - User and Template bug when page popped out
URL: https://github.com/apache/nifi/pull/3390#discussion_r272333206
 
 

 ##########
 File path: nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/templates/nf-templates.js
 ##########
 @@ -95,9 +95,13 @@
                     if (clusterSummary.connectedToCluster) {
                         deferred.resolve(false);
                     } else {
-                        nfDialog.showDisconnectedFromClusterMessage(function () {
+                        if (clusterSummary.clustered) {
+                            nfDialog.showDisconnectedFromClusterMessage(function () {
+                                deferred.resolve(true);
+                            });
+                        } else {
                             deferred.resolve(true);
-                        });
+                        }
 
 Review comment:
   ok, i'll get it fixed.

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services