Skip to content

Commit

Permalink
outcomes don't have codes
Browse files Browse the repository at this point in the history
  • Loading branch information
longhotsummer committed Sep 3, 2024
1 parent 8aa79c0 commit 5693647
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion peachjam/views/courts.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def add_facets(self, context):
context["facet_data"]["outcomes"] = {
"label": _("Outcomes"),
"type": "checkbox",
"options": [(outcome.code, outcome.name) for outcome in outcomes],
"options": [(outcome.name, outcome.name) for outcome in outcomes],
"values": self.request.GET.getlist("outcomes"),
}

Expand Down

0 comments on commit 5693647

Please sign in to comment.