Skip to content

Commit

Permalink
Hotfix: Empty Registration Status
Browse files Browse the repository at this point in the history
  • Loading branch information
chandra-tacc committed Aug 28, 2024
1 parent 7750967 commit 97f9a0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apcd-cms/src/apps/utils/registrations_data_formatting.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def _set_registration(reg, reg_ents, reg_conts):
city=reg[9],
state=reg[10]
),
'reg_status': reg[5].title(),
'reg_status': reg[5].title() if reg[5] else None,
'reg_id': reg[0],
'year': reg[12],
'view_modal_content': _set_modal_content(reg, reg_ents, reg_conts, org_types)
Expand Down

0 comments on commit 97f9a0a

Please sign in to comment.