Skip to content

Commit c81869c

Browse files
committed
Fixes #14533: Fix quick search under VLAN group VLANs list
1 parent 929d4d2 commit c81869c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

netbox/ipam/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -953,7 +953,7 @@ def get_children(self, request, parent):
953953

954954
def prep_table_data(self, request, queryset, parent):
955955
if not get_table_ordering(request, self.table):
956-
return add_available_vlans(parent.get_child_vlans(), parent)
956+
return add_available_vlans(queryset, parent)
957957
return queryset
958958

959959

0 commit comments

Comments
 (0)