Skip to content

Commit

Permalink
fix #4607 Fix bug that kept filter from working
Browse files Browse the repository at this point in the history
  • Loading branch information
joemull committed Jan 31, 2025
1 parent 3cad511 commit a46b7ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/forms/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,7 @@ def __init__(self, *args, **kwargs):
count = values_list.count(value)
label_with_count = f'{label} ({count})'
choices.append((value, label_with_count))
self.fields[facet_key] = forms.ChoiceField(
self.fields[facet_key] = forms.MultipleChoiceField(
widget=forms.widgets.CheckboxSelectMultiple,
choices=choices,
required=False,
Expand Down

0 comments on commit a46b7ac

Please sign in to comment.