mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-28 03:16:25 -06:00
Fixes #2023: Manufacturer should not be a required field when importing platforms
This commit is contained in:
parent
8d0f6105b2
commit
f0c3aaa73b
@ -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