mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-20 02:06:42 -06:00
Fix RackGroupForm field
This commit is contained in:
parent
09e09e43ba
commit
ced6fe313a
@ -378,7 +378,8 @@ class RackGroupForm(BootstrapMixin, forms.ModelForm):
|
|||||||
queryset=Site.objects.all()
|
queryset=Site.objects.all()
|
||||||
)
|
)
|
||||||
parent = DynamicModelChoiceField(
|
parent = DynamicModelChoiceField(
|
||||||
queryset=RackGroup.objects.all()
|
queryset=RackGroup.objects.all(),
|
||||||
|
required=False
|
||||||
)
|
)
|
||||||
slug = SlugField()
|
slug = SlugField()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user