1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Fixes #13767: Fix support for comments when creating a new service via web UI

This commit is contained in:
Jeremy Stretch
2023-09-15 10:33:54 -04:00
parent 487827c776
commit 2dfbd72f10

View File

@ -731,7 +731,7 @@ class ServiceCreateForm(ServiceForm):
class Meta(ServiceForm.Meta):
fields = [
'device', 'virtual_machine', 'service_template', 'name', 'protocol', 'ports', 'ipaddresses', 'description',
'tags',
'comments', 'tags',
]
def __init__(self, *args, **kwargs):