mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-16 12:12:53 -06:00
Fixes #2023: Manufacturer should not be a required field when importing platforms
This commit is contained in:
parent
fd62a248ee
commit
81c027e7cf
@ -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={
|
||||
|
Loading…
Reference in New Issue
Block a user