mirror of
https://github.com/makeplane/plane.git
synced 2026-02-25 04:35:21 +01:00
[WEB-4958] fix: archived issues in epic anlaytics count #4234
This commit is contained in:
@@ -811,7 +811,9 @@ class EpicListAnalyticsEndpoint(BaseAPIView):
|
||||
)
|
||||
|
||||
# fetch all the issues in which user is part of
|
||||
issues = Issue.objects.filter(workspace__slug=slug, project_id=project_id)
|
||||
issues = Issue.objects.filter(
|
||||
workspace__slug=slug, project_id=project_id, archived_at__isnull=True
|
||||
)
|
||||
|
||||
result = []
|
||||
for epic_id in epics:
|
||||
|
||||
Reference in New Issue
Block a user