Skip to content

Commit

Permalink
fix(config_management): show parent groups only on index
Browse files Browse the repository at this point in the history
  • Loading branch information
jon-nfc committed Nov 15, 2024
1 parent b7d7680 commit 323d463
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/config_management/viewsets/config_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def get_queryset(self):

else:

self.queryset = super().get_queryset()
self.queryset = super().get_queryset().filter( parent = None )

return self.queryset

Expand Down

0 comments on commit 323d463

Please sign in to comment.