You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by pv...@apache.org on 2016/09/13 20:18:09 UTC

nifi git commit: [NIFI-2770] fix action details dialog

Repository: nifi
Updated Branches:
  refs/heads/master 5dd743947 -> 02ca2a0d7


[NIFI-2770] fix action details dialog

This closes #1017.


Project: http://git-wip-us.apache.org/repos/asf/nifi/repo
Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/02ca2a0d
Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/02ca2a0d
Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/02ca2a0d

Branch: refs/heads/master
Commit: 02ca2a0d78fe5189a3fb220ee7c8409737e26c18
Parents: 5dd7439
Author: Scott Aslan <sc...@gmail.com>
Authored: Tue Sep 13 15:30:51 2016 -0400
Committer: Pierre Villard <pi...@gmail.com>
Committed: Tue Sep 13 22:17:37 2016 +0200

----------------------------------------------------------------------
 .../nifi-web-ui/src/main/webapp/js/nf/history/nf-history-table.js  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/nifi/blob/02ca2a0d/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/history/nf-history-table.js
----------------------------------------------------------------------
diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/history/nf-history-table.js b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/history/nf-history-table.js
index 3d62389..f952e30 100644
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/history/nf-history-table.js
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/history/nf-history-table.js
@@ -338,7 +338,7 @@ nf.HistoryTable = (function () {
             // determine the desired action
             if (historyGrid.getColumns()[args.cell].id === 'moreDetails') {
                 if (target.hasClass('show-action-details')) {
-                    showActionDetails(item);
+                    showActionDetails(item.action);
                 }
             }
         });