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

Fixes #14533: Fix quick search under VLAN group VLANs list

This commit is contained in:
Jeremy Stretch
2023-12-15 08:21:34 -05:00
parent 929d4d2c95
commit c81869c795

View File

@ -953,7 +953,7 @@ class VLANGroupVLANsView(generic.ObjectChildrenView):
def prep_table_data(self, request, queryset, parent):
if not get_table_ordering(request, self.table):
return add_available_vlans(parent.get_child_vlans(), parent)
return add_available_vlans(queryset, parent)
return queryset