From a725d71978f297965362eabf8af3c560390b4cc9 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Mar 16 2015 13:24:01 +0000 Subject: Make the status field optional when updating an issue This is necessary as only admins can change the status (should we change this?) while other users can change the assignee or the dependency tree --- diff --git a/progit/forms.py b/progit/forms.py index 4725b6f..0fbea71 100644 --- a/progit/forms.py +++ b/progit/forms.py @@ -87,7 +87,7 @@ class UpdateIssueForm(wtf.Form): ) status = wtforms.SelectField( 'Status', - [wtforms.validators.Required()], + [wtforms.validators.Optional()], choices=[(item, item) for item in []] )