fix(config_management): correct truthy check for config group ViewSet property when evaluating queryset

ref: #512 #518
This commit is contained in:
2025-02-04 08:00:47 +09:30
parent 06cefb9223
commit 27b7550114

View File

@ -77,7 +77,7 @@ class ViewSet( ModelViewSet ):
def get_queryset(self):
if self.queryset:
if self.queryset is not None:
return self.queryset