From ce97188f612756f47acd93a74369368e9c123008 Mon Sep 17 00:00:00 2001 From: Ahmad Sadeddin Date: Fri, 26 Jan 2024 10:42:48 -0800 Subject: [PATCH] Corgea's fix for issue 48317121-ae7b-40cc-8da6-7cb0d56b8b71 --- posthog/admin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posthog/admin.py b/posthog/admin.py index 228cd4b10fc0..870d323a689f 100644 --- a/posthog/admin.py +++ b/posthog/admin.py @@ -608,7 +608,7 @@ def members_count(self, organization: Organization): def first_member(self, organization: Organization): user = organization.members.order_by("id").first() return ( - format_html(f'{user.email}') + format_html('{}', user.pk, user.email) if user is not None else "None" )