Include the comments field in MACAddressForm field list to allow editing MAC Address comments via the UI form. Fixes #21947
@@ -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):