Repository: nifi
Updated Branches:
refs/heads/master b0f6825e0 -> ae4f27a62
NIFI-3023:
- Verifying permissions prior to checking Remote Process Group transmission status.
Project: http://git-wip-us.apache.org/repos/asf/nifi/repo
Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/2c91a1a3
Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/2c91a1a3
Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/2c91a1a3
Branch: refs/heads/master
Commit: 2c91a1a33d2d085f50ac25addffd2981af347551
Parents: b0f6825
Author: Matt Gilman <matt.c.gilman@gmail.com>
Authored: Thu Nov 10 15:21:49 2016 -0500
Committer: Scott Aslan <scottyaslan@gmail.com>
Committed: Mon Nov 14 16:03:47 2016 -0500
----------------------------------------------------------------------
.../src/main/webapp/js/nf/canvas/nf-remote-process-group.js | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/nifi/blob/2c91a1a3/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-remote-process-group.js
----------------------------------------------------------------------
diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-remote-process-group.js
b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-remote-process-group.js
index 6b10fa2..d6df127 100644
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-remote-process-group.js
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-remote-process-group.js
@@ -715,14 +715,14 @@ nf.RemoteProcessGroup = (function () {
return d.permissions.canRead && !nf.Common.isEmpty(d.component.authorizationIssues);
})
.classed('transmitting', function (d) {
- if (d.component.transmitting === true) {
+ if (d.permissions.canRead && d.component.transmitting === true) {
return true;
} else {
return false;
}
})
.classed('not-transmitting', function (d) {
- if (d.component.transmitting !== true) {
+ if (d.permissions.canRead && d.component.transmitting !== true) {
return true;
} else {
return false;
|