Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
kziemianek committed Jun 7, 2018
1 parent 367eb76 commit 885b7e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/assets/v2/js/pages/bounty_details.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,6 @@ var callbacks = {
var ui_body = val;

ui_body = converter.makeHtml(ui_body);

return [ 'issue_description', ui_body ];
},
'bounty_owner_address': address_ize,
Expand Down Expand Up @@ -517,6 +516,7 @@ var build_detail_page = function(result) {
var id = '#' + key;

if ($(id).length) {
console.log(val)
$(id).html(val);
}
}
Expand Down Expand Up @@ -691,7 +691,7 @@ var pull_bounty_from_api = function() {
uri = uri + '&standard_bounties_id=' + document.issue_stdbounties_id;
}
$.get(uri, function(results) {
results = sanitizeAPIResults(results);
// results = sanitizeAPIResults(results);
var nonefound = true;
// potentially make this a lot faster by only pulling the specific issue required

Expand Down

0 comments on commit 885b7e1

Please sign in to comment.