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

Fix DNS name label in IP address bulk edit form

This commit is contained in:
jeremystretch
2021-12-30 11:46:09 -05:00
parent f7d91b7139
commit 67aeb380e7

View File

@ -302,7 +302,8 @@ class IPAddressBulkEditForm(AddRemoveTagsForm, CustomFieldModelBulkEditForm):
)
dns_name = forms.CharField(
max_length=255,
required=False
required=False,
label='DNS name'
)
description = forms.CharField(
max_length=100,