diff --git a/netbox/circuits/forms/model_forms.py b/netbox/circuits/forms/model_forms.py index 906fe8952..d6e3300b8 100644 --- a/netbox/circuits/forms/model_forms.py +++ b/netbox/circuits/forms/model_forms.py @@ -91,13 +91,13 @@ class ProviderNetworkForm(PrimaryModelForm): class CircuitTypeForm(OrganizationalModelForm): fieldsets = ( - FieldSet('name', 'slug', 'color', 'description', 'owner', 'tags'), + FieldSet('name', 'slug', 'color', 'description', 'tags'), ) class Meta: model = CircuitType fields = [ - 'name', 'slug', 'color', 'description', 'comments', 'tags', + 'name', 'slug', 'color', 'description', 'owner', 'comments', 'tags', ]