Skip to content

Commit

Permalink
fix: reaction tooltip reacted user's click closes right panel if clic…
Browse files Browse the repository at this point in the history
…ked on another message tooltip (#15797)
  • Loading branch information
arjita-mitra authored Sep 13, 2023
1 parent 28c0e0c commit d52d901
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/script/components/Conversation/Conversation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ export const Conversation: FC<ConversationProps> = ({
};

const showMessageReactions = (message: Message, showReactions = true) => {
openRightSidebar(PanelState.MESSAGE_DETAILS, {entity: message, showReactions});
openRightSidebar(PanelState.MESSAGE_DETAILS, {entity: message, showReactions}, true);
};

const handleEmailClick = (event: Event, messageDetails: MessageDetails) => {
Expand Down

0 comments on commit d52d901

Please sign in to comment.