Merge "Remove the extra required=True"

This commit is contained in:
Jenkins 2016-11-07 02:05:10 +00:00 committed by Gerrit Code Review
commit 754dea4d0f
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ from karbor_dashboard.api import karbor as karborclient
class CreateProtectionPlanForm(horizon_forms.SelfHandlingForm):
name = forms.CharField(label=_("Name"), required=True)
name = forms.CharField(label=_("Name"))
provider_id = forms.ChoiceField(label=_('Protection Provider'),
choices=[],
widget=forms.Select(attrs={