Skip to content

Commit

Permalink
add feedback comments
Browse files Browse the repository at this point in the history
  • Loading branch information
thelostone-mc committed Mar 17, 2021
1 parent 6dde489 commit 62425ae
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions app/grants/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -1593,8 +1593,9 @@ def grant_edit(request, grant_id):
if not description_rich:
description_rich = description

is_clr_eligible = json.loads(request.POST.get('is_clr_eligible', 'true'))
grant.is_clr_eligible = description_rich = is_clr_eligible
if grant.active:
is_clr_eligible = json.loads(request.POST.get('is_clr_eligible', 'true'))
grant.is_clr_eligible = is_clr_eligible

eth_payout_address = request.POST.get('eth_payout_address', '0x0')
zcash_payout_address = request.POST.get('zcash_payout_address', '0x0')
Expand Down

0 comments on commit 62425ae

Please sign in to comment.