fix(dcim): Add comments field to MAC Address form

Include the comments field in MACAddressForm field list to allow editing
MAC Address comments via the UI form.

Fixes #21947
This commit is contained in:
Martin Hauser 2026-04-16 22:46:09 +02:00 committed by Jeremy Stretch
parent 3eb89531ad
commit 0d1e9d88a8
1 changed files with 1 additions and 1 deletions

View File

@ -1974,7 +1974,7 @@ class MACAddressForm(PrimaryModelForm):
class Meta:
model = MACAddress
fields = [
'mac_address', 'interface', 'vminterface', 'description', 'owner', 'tags',
'mac_address', 'interface', 'vminterface', 'description', 'owner', 'comments', 'tags',
]
def __init__(self, *args, **kwargs):