Fix double request issue in artifacts browser
This commit is contained in:
parent
2becc6fae9
commit
19608d3ee0
1 changed files with 5 additions and 1 deletions
|
@ -23,6 +23,10 @@
|
|||
.center Empty
|
||||
|
||||
:javascript
|
||||
$(document).on('click', 'tr[data-link]', function(e) {
|
||||
$('.tree-holder').on('click', 'tr[data-link] a', function(e) {
|
||||
e.stopImmediatePropagation();
|
||||
});
|
||||
|
||||
$('.tree-holder').on('click', 'tr[data-link]', function(e) {
|
||||
window.location = this.dataset.link;
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue