Skip to content

Commit

Permalink
Fix bug in Excel column names (#683)
Browse files Browse the repository at this point in the history
  • Loading branch information
aviupadhyayula authored Apr 25, 2024
1 parent 2b2cdba commit be6ee17
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions backend/clubs/serializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -2316,6 +2316,8 @@ def get_xlsx_column_name(key):
label = json.loads(fair.questions)[index]["label"]
return f"[{fair.name}] {label}"
return f"Registered for {fair.name}"
else:
return key

class Meta(AuthenticatedClubSerializer.Meta):
pass
Expand Down

0 comments on commit be6ee17

Please sign in to comment.