We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I want to filter supporters by country, the filter is not applied.
This is because the widget provides multiple choices, but the form field is a single choice field:
janeway/src/core/forms/forms.py
Lines 698 to 702 in 3cad511
As a result the data is misaligned when the form is validated.
Use MultipleChoiceField.
MultipleChoiceField
The text was updated successfully, but these errors were encountered:
fix #4607 Fix bug that kept filter from working
a46b7ac
joemull
Successfully merging a pull request may close this issue.
Problem
When I want to filter supporters by country, the filter is not applied.
This is because the widget provides multiple choices, but the form field is a single choice field:
janeway/src/core/forms/forms.py
Lines 698 to 702 in 3cad511
As a result the data is misaligned when the form is validated.
Proposed solution
Use
MultipleChoiceField
.The text was updated successfully, but these errors were encountered: