Skip to content

Commit

Permalink
Fixed all_retired status date column calculus
Browse files Browse the repository at this point in the history
  • Loading branch information
biwano committed Oct 6, 2023
1 parent 0f7ec2c commit e1eb997
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/apps/services/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def status_date_column(status):
return "issuance_date"
elif status == "bridged":
return "bridged_date"
elif status == "retired":
elif status in ["retired", "all_retired"]:
return "retirement_date"
elif status == "redeemed":
return "redeemed_date"
Expand Down

0 comments on commit e1eb997

Please sign in to comment.