diff --git a/apps/product/web/api/v1/viewsets/quota_api.py b/apps/product/web/api/v1/viewsets/quota_api.py index 50f9537..7248483 100644 --- a/apps/product/web/api/v1/viewsets/quota_api.py +++ b/apps/product/web/api/v1/viewsets/quota_api.py @@ -359,7 +359,7 @@ class QuotaViewSet(BaseViewSet, SoftDeleteMixin, viewsets.ModelViewSet, DynamicS # paginate queryset page = self.paginate_queryset( - queryset.order_by('-modify_date') + queryset.order_by('-modify_date').distinct() ) if page is not None: # noqa serializer = self.get_serializer(page, many=True, context={'org': get_organization_by_user(request.user)})