Skip to content

Commit

Permalink
Make video_privacy optional
Browse files Browse the repository at this point in the history
This is not the right way to do fields that only appear for some
proposal types, but is forced by the rest of the code.

We should change this so that forms don't include fields that aren't
relevant to their types.
  • Loading branch information
marksteward committed May 28, 2024
1 parent 5abc5f3 commit a31f2b6
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions apps/cfp_review/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ class UpdateProposalForm(Form):
("review", "Do not stream, and do not publish until reviewed"),
("none", "Do not stream or record"),
],
validators=[Optional()],
)
needs_laptop = SelectField(
"Needs laptop",
Expand Down

0 comments on commit a31f2b6

Please sign in to comment.