mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-16 12:12:53 -06:00
Fix DNS name label in IP address bulk edit form
This commit is contained in:
parent
f7d91b7139
commit
67aeb380e7
@ -302,7 +302,8 @@ class IPAddressBulkEditForm(AddRemoveTagsForm, CustomFieldModelBulkEditForm):
|
|||||||
)
|
)
|
||||||
dns_name = forms.CharField(
|
dns_name = forms.CharField(
|
||||||
max_length=255,
|
max_length=255,
|
||||||
required=False
|
required=False,
|
||||||
|
label='DNS name'
|
||||||
)
|
)
|
||||||
description = forms.CharField(
|
description = forms.CharField(
|
||||||
max_length=100,
|
max_length=100,
|
||||||
|
Loading…
Reference in New Issue
Block a user