diff --git a/apiserver/plane/app/views/search/base.py b/apiserver/plane/app/views/search/base.py index c0ef59aa74..3736d8f81a 100644 --- a/apiserver/plane/app/views/search/base.py +++ b/apiserver/plane/app/views/search/base.py @@ -274,7 +274,7 @@ class SearchEndpoint(BaseAPIView): q |= Q(**{f"{field}__icontains": query}) users = ( ProjectMember.objects.filter( - q, is_active=True, project_id=project_id, workspace__slug=slug + q, is_active=True, project_id=project_id, workspace__slug=slug, member__is_bot=False ) .annotate( member__avatar_url=Case( diff --git a/space/core/components/editor/embeds/mentions/user.tsx b/space/core/components/editor/embeds/mentions/user.tsx index 418623f98c..5a178396b8 100644 --- a/space/core/components/editor/embeds/mentions/user.tsx +++ b/space/core/components/editor/embeds/mentions/user.tsx @@ -26,9 +26,12 @@ export const EditorUserMention: React.FC = observer((props) => { return (
@{userDetails?.member__display_name}
diff --git a/web/core/components/editor/embeds/mentions/user.tsx b/web/core/components/editor/embeds/mentions/user.tsx index 8952e44d57..20cfeb2baa 100644 --- a/web/core/components/editor/embeds/mentions/user.tsx +++ b/web/core/components/editor/embeds/mentions/user.tsx @@ -58,9 +58,9 @@ export const EditorUserMention: React.FC = observer((props) => { return (