Skip to content

Commit

Permalink
fix: Hide apps with deleted configs
Browse files Browse the repository at this point in the history
  • Loading branch information
tiina303 committed Jan 16, 2024
1 parent 9baf0b8 commit 3de6d53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion posthog/api/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ def filter_queryset_by_parents_lookups(self, queryset):
| Q(is_global=True)
| Q(
id__in=PluginConfig.objects.filter( # If a config exists the org can see the plugin
team__organization_id=self.organization_id
team__organization_id=self.organization_id, deleted=False
).values_list("plugin_id", flat=True)
)
)
Expand Down

0 comments on commit 3de6d53

Please sign in to comment.