Reverted unnecessary string edit

This commit is contained in:
Tom Roussel 2024-03-02 12:52:52 +01:00
parent 63a97c7c5f
commit 8cef9492d0

View file

@ -363,7 +363,7 @@ class BillForm(FlaskForm):
description=_("A link to an external document, related to this bill"),
)
payed_for = SelectMultipleField(
_("For Who?"), validators=[DataRequired()], coerce=int
_("For whom?"), validators=[DataRequired()], coerce=int
)
bill_type = SelectField(_("Bill Type"), validators=[DataRequired()], coerce=str)
submit = SubmitField(_("Submit"))