Skip to content

Commit

Permalink
bug: ensure older claims show up after contract is drained (#10502)
Browse files Browse the repository at this point in the history
  • Loading branch information
thelostone-mc authored Apr 20, 2022
1 parent 289ca8c commit bbff4ac
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions app/grants/templates/grants/components/historical_claim.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ <h4 class="d-lg-block d-none font-weight-bold font-bigger-1 gc-font-base">[[ mat
Claim Period: [[ match.grant_payout.grant_clrs[0].claim_start_date ]] - [[ match.grant_payout.grant_clrs[0].claim_end_date ]]
</span>
</b-col>
<b-col v-else-if="match.status == 'claimed'" lg="4" sm="12" class="mt-2 mt-lg-0">
<b-col v-else-if="match.status == 'claimed' || match.claim_tx != 'NA'" lg="4" sm="12" class="mt-2 mt-lg-0">
<p class="text-highlight-green font-weight-bold claimed_text">
<i class="far fa-check mr-2"></i>Claimed
</p>
Expand All @@ -29,7 +29,10 @@ <h4 class="d-lg-block d-none font-weight-bold font-bigger-1 gc-font-base">[[ mat
<span class="font-body text-grey-500">[[ match.funding_withdrawal_date ]]</span>
</b-col>
<b-col class="text-lg-right mt-2 mt-lg-0">
<a v-if="match.claim_tx" :href="[[`https://etherscan.io/tx/${match.claim_tx}` ]]" target="_blank" rel="noopener noreferrer" class="transaction_text">
<a v-if="match.claim_tx && match.claim_tx != 'NA' "
:href="[[`https://etherscan.io/tx/${match.claim_tx}` ]]"
target="_blank" rel="noopener noreferrer" class="transaction_text"
>
View Transaction<i class="far fa-external-link ml-2"></i>
</a>
</b-col>
Expand Down

0 comments on commit bbff4ac

Please sign in to comment.