diff --git a/hypha/apply/dashboard/views_partials.py b/hypha/apply/dashboard/views_partials.py index f534f3dbe6..5b33f6f4c0 100644 --- a/hypha/apply/dashboard/views_partials.py +++ b/hypha/apply/dashboard/views_partials.py @@ -17,6 +17,7 @@ def my_active_submissions(user): .annotate( is_active=Case(When(status__in=active_statuses, then=True), default=False) ) + .current() .select_related("draft_revision") .order_by("-is_active", "-submit_time") .distinct()