Fix bounties view rendering

* correct typoed key names causing empty values
This commit is contained in:
Teemu Patja 2017-08-23 23:59:30 +03:00
parent 584f742de9
commit a091d04bb2
No known key found for this signature in database
GPG Key ID: F5B7035E6580FD4C
1 changed files with 6 additions and 6 deletions

View File

@ -5,15 +5,15 @@
(defn bounty-item [bounty]
(let [{avatar-url :repo_owner_avatar_url
owner :repo_owner
repo-name :repo_name
issue-title :issue_title
issue-number :issue_number
(let [{avatar-url :avatar-url
owner :repo-owner
repo-name :repo-name
issue-title :issue-title
issue-number :issue-number
updated :updated
tokens :tokens
balance-eth :balance-eth
value-usd :value_usd} bounty
value-usd :value-usd} bounty
full-repo (str owner "/" repo-name)
issue-link [:a
{:href (issue-url owner repo-name issue-number)}