diff --git a/ts/components/menu/ConversationListItemContextMenu.tsx b/ts/components/menu/ConversationListItemContextMenu.tsx index a0dd83dcab..749964a059 100644 --- a/ts/components/menu/ConversationListItemContextMenu.tsx +++ b/ts/components/menu/ConversationListItemContextMenu.tsx @@ -52,10 +52,6 @@ const ConversationListItemContextMenu = (props: PropsContextConversationItem) => const disabledLegacyGroup = useDisableLegacyGroupDeprecatedActions(convoIdFromContext); const isPinned = useIsPinned(convoIdFromContext); - if (isSearching) { - return null; - } - if (disabledLegacyGroup) { return ( @@ -67,6 +63,28 @@ const ConversationListItemContextMenu = (props: PropsContextConversationItem) => ); } + if (isSearching) { + // When we are searching, we can sometimes find conversations that should have a limited set of actions, + // so here we have a whitelist of what can be done. + + return ( + + + + + + + + + + + + + + + ); + } + return (