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

ref: #512 #518
This commit is contained in:
2025-02-04 08:00:04 +09:30
parent 4adb38fdd2
commit 4dae20b056

View File

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