mirror of https://github.com/apache/nifi.git
NIFI-4266 - Allow double-click to display Event
...details Signed-off-by: Scott Aslan <scottyaslan@gmail.com> This closes #2058
This commit is contained in:
parent
f8f1cc8d0d
commit
329b1caf82
|
@ -1011,6 +1011,10 @@
|
|||
})
|
||||
.on('mousedown', function (d) {
|
||||
d3.event.stopPropagation();
|
||||
})
|
||||
.on('dblclick', function (d) {
|
||||
// show the event details
|
||||
provenanceTableCtrl.showEventDetails(d.id, clusterNodeId);
|
||||
});
|
||||
|
||||
events
|
||||
|
|
Loading…
Reference in New Issue