Skip to content

Commit

Permalink
one more fix for previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
owocki committed Apr 17, 2019
1 parent 3a414b6 commit 87b2464
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/assets/v2/js/pages/kill_bounty.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ window.onload = function() {

};
// Get bountyId from the database
var uri = '/api/v0.1/bounties/?github_url=' + issueURL + '&network=' + $('input[name=network]').val() + '&standard_bounties_id=' + $('input[name=standard_bounties_id]').val();
var uri = '/api/v0.1/bounties/?event_tag=all&github_url=' + issueURL + '&network=' + $('input[name=network]').val() + '&standard_bounties_id=' + $('input[name=standard_bounties_id]').val();

$.get(uri, apiCallback);
}
Expand Down
2 changes: 1 addition & 1 deletion app/assets/v2/js/pages/process_bounty.js
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ window.onload = function() {
// Get bountyId from the database

waitforWeb3(function() {
var uri = '/api/v0.1/bounties/?github_url=' + issueURL + '&network=' + $('input[name=network]').val() + '&standard_bounties_id=' + $('input[name=standard_bounties_id]').val();
var uri = '/api/v0.1/bounties/?event_tag=all&github_url=' + issueURL + '&network=' + $('input[name=network]').val() + '&standard_bounties_id=' + $('input[name=standard_bounties_id]').val();

$.get(uri, apiCallback);
});
Expand Down

0 comments on commit 87b2464

Please sign in to comment.