diff --git a/netbox/ipam/forms.py b/netbox/ipam/forms.py index 9da62b9fb..dac231202 100644 --- a/netbox/ipam/forms.py +++ b/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(),