From 885b7e18754e8b865b9311815d0b60650c11bc08 Mon Sep 17 00:00:00 2001 From: Kasper Ziemianek Date: Thu, 7 Jun 2018 08:22:26 +0200 Subject: [PATCH] Fixes: https://github.com/gitcoinco/web/issues/1391 --- app/assets/v2/js/pages/bounty_details.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/assets/v2/js/pages/bounty_details.js b/app/assets/v2/js/pages/bounty_details.js index 681dba9aa31..e0b025d954c 100644 --- a/app/assets/v2/js/pages/bounty_details.js +++ b/app/assets/v2/js/pages/bounty_details.js @@ -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, @@ -517,6 +516,7 @@ var build_detail_page = function(result) { var id = '#' + key; if ($(id).length) { + console.log(val) $(id).html(val); } } @@ -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