Skip to content

Commit

Permalink
fix: analytics exports
Browse files Browse the repository at this point in the history
  • Loading branch information
NarayanBavisetti committed Oct 24, 2024
1 parent 2500687 commit 07b6e9f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apiserver/plane/bgtasks/analytic_plot_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,8 @@ def get_label_details(slug, filters):
Issue.objects.filter(
workspace__slug=slug,
**filters,
labels__id__isnull=False & Q(label_issue__deleted_at__isnull=True),
labels__id__isnull=False,
label_issue__deleted_at__isnull=True,
)
.distinct("labels__id")
.order_by("labels__id")
Expand Down

0 comments on commit 07b6e9f

Please sign in to comment.