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

Fixes #2841: Fix filtering by VRF for prefix and IP address lists

This commit is contained in:
Jeremy Stretch
2019-02-06 10:48:14 -05:00
parent ca51fab4d8
commit 42d1d6e1b0
2 changed files with 3 additions and 2 deletions

View File

@ -531,7 +531,7 @@ class PrefixFilterForm(BootstrapMixin, CustomFieldFilterForm):
null_label='-- Global --',
widget=APISelectMultiple(
api_url="/api/ipam/vrfs/",
value_field="slug",
value_field="rd",
null_option=True,
)
)
@ -980,7 +980,7 @@ class IPAddressFilterForm(BootstrapMixin, CustomFieldFilterForm):
null_label='-- Global --',
widget=APISelectMultiple(
api_url="/api/ipam/vrfs/",
value_field="slug",
value_field="rd",
null_option=True,
)
)