Przeglądaj źródła

Fix DNS name label in IP address bulk edit form

jeremystretch 4 lat temu
rodzic
commit
67aeb380e7
1 zmienionych plików z 2 dodań i 1 usunięć
  1. 2 1
      netbox/ipam/forms/bulk_edit.py

+ 2 - 1
netbox/ipam/forms/bulk_edit.py

@@ -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,