瀏覽代碼

Correct label for RIR

Jeremy Stretch 5 年之前
父節點
當前提交
f631f8c45b
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2 1
      netbox/ipam/forms.py

+ 2 - 1
netbox/ipam/forms.py

@@ -227,7 +227,8 @@ class RIRFilterForm(BootstrapMixin, forms.Form):
 
 class AggregateForm(BootstrapMixin, TenancyForm, CustomFieldModelForm):
     rir = DynamicModelChoiceField(
-        queryset=RIR.objects.all()
+        queryset=RIR.objects.all(),
+        label='RIR'
     )
     tags = DynamicModelMultipleChoiceField(
         queryset=Tag.objects.all(),