Browse Source

Fix field label for Prefix.vrf

Jeremy Stretch 6 năm trước cách đây
mục cha
commit
f643af13d7
1 tập tin đã thay đổi với 1 bổ sung0 xóa
  1. 1 0
      netbox/ipam/forms.py

+ 1 - 0
netbox/ipam/forms.py

@@ -276,6 +276,7 @@ class PrefixForm(BootstrapMixin, TenancyForm, CustomFieldModelForm):
     vrf = DynamicModelChoiceField(
         queryset=VRF.objects.all(),
         required=False,
+        label='VRF',
         widget=APISelect(
             api_url="/api/ipam/vrfs/",
         )