[NIFI-2770] fix action details dialog

This closes #1017.
This commit is contained in:
Scott Aslan 2016-09-13 15:30:51 -04:00 committed by Pierre Villard
parent 5dd743947c
commit 02ca2a0d78
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
}
});