Skip to content

Commit

Permalink
Fixes #2023: Manufacturer should not be a required field when importi…
Browse files Browse the repository at this point in the history
…ng platforms
  • Loading branch information
jeremystretch committed Apr 12, 2018
1 parent fd62a24 commit 81c027e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion netbox/dcim/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -706,7 +706,7 @@ class PlatformCSVForm(forms.ModelForm):
slug = SlugField()
manufacturer = forms.ModelChoiceField(
queryset=Manufacturer.objects.all(),
required=True,
required=False,
to_field_name='name',
help_text='Manufacturer name',
error_messages={
Expand Down

0 comments on commit 81c027e

Please sign in to comment.