Skip to content

Commit

Permalink
Use the proper key in major porgram form fields (#4445)
Browse files Browse the repository at this point in the history
  • Loading branch information
jperson1 authored Nov 12, 2024
1 parent 24a933e commit 7ddde86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/dissemination/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ class AdvancedSearchForm(forms.Form):
)
entity_type_choices = list(zip(*entity_type_field_mapping.values()))
major_program_choices = (
(True, "Y"),
(False, "N"),
("True", "Y"),
("False", "N"),
)

# Query params
Expand Down

0 comments on commit 7ddde86

Please sign in to comment.