Fix empty value for rating
This commit is contained in:
parent
0a0e162910
commit
0f1edb3d18
1 changed files with 1 additions and 1 deletions
|
|
@ -105,7 +105,7 @@ class GovernmentPlanUpdateProposalForm(forms.ModelForm):
|
|||
help_text=_("What's your rating of the current implementation?"),
|
||||
choices=[("", "---")] + PlanRating.choices,
|
||||
coerce=int,
|
||||
empty_value="",
|
||||
empty_value=None,
|
||||
required=False,
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue