From 02ca2a0d78fe5189a3fb220ee7c8409737e26c18 Mon Sep 17 00:00:00 2001 From: Scott Aslan Date: Tue, 13 Sep 2016 15:30:51 -0400 Subject: [PATCH] [NIFI-2770] fix action details dialog This closes #1017. --- .../src/main/webapp/js/nf/history/nf-history-table.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 3d623896a7..f952e304c4 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); } } });