diff --git a/daras_ai_v2/base.py b/daras_ai_v2/base.py index 78e97ed76..494282a2d 100644 --- a/daras_ai_v2/base.py +++ b/daras_ai_v2/base.py @@ -2171,10 +2171,14 @@ def _render(pr: PublishedRun): allow_hide=allow_hide, ) - qs = PublishedRun.objects.filter( - workflow=self.workflow, - is_approved_example=True, - ).exclude(published_run_id="") + qs = ( + PublishedRun.objects.filter( + workflow=self.workflow, + is_approved_example=True, + ) + .exclude(published_run_id="") + .exclude(visibility=PublishedRunVisibility.UNLISTED) + ) example_runs, cursor = paginate_queryset( qs=qs,