fix: if we are in multiselect mode dont highlight the message

highlighting should only happen when a message is right clicked
pull/3027/head
William Grant 1 year ago
parent 14165d2f11
commit c38ca2edcf

@ -58,10 +58,9 @@ const StyledReadableMessage = styled.div<{
}
${props =>
!props.selected &&
props.isRightClicked &&
`
background-color: var(--conversation-tab-background-selected-color);
`}
`background-color: var(--conversation-tab-background-selected-color);`}
`;
export const GenericReadableMessage = (props: Props) => {

Loading…
Cancel
Save