diff --git a/apiserver/plane/app/views/issue.py b/apiserver/plane/app/views/issue.py index 1f61a3764..b03c0ea4f 100644 --- a/apiserver/plane/app/views/issue.py +++ b/apiserver/plane/app/views/issue.py @@ -371,7 +371,6 @@ class IssueListGroupedEndpoint(BaseAPIView): issue_queryset = ( Issue.objects.filter(workspace__slug=slug, project_id=project_id) - .filter(~Q(state="Triage")) .select_related("project") .select_related("workspace") .select_related("state") diff --git a/apiserver/plane/space/views/base.py b/apiserver/plane/space/views/base.py index b1d749a09..49b00f90f 100644 --- a/apiserver/plane/space/views/base.py +++ b/apiserver/plane/space/views/base.py @@ -78,7 +78,7 @@ class BaseViewSet(TimezoneMixin, ModelViewSet, BasePaginator): if isinstance(e, ValidationError): return Response( - {"error": "Please provide valid detail"}, + {"error": "Please provide valid detail", "e":str(e)}, status=status.HTTP_400_BAD_REQUEST, ) @@ -167,7 +167,7 @@ class BaseAPIView(TimezoneMixin, APIView, BasePaginator): if isinstance(e, ValidationError): return Response( - {"error": "Please provide valid detail"}, + {"error": "Please provide valid detail" ,"e":str(e)}, status=status.HTTP_400_BAD_REQUEST, )