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 2 years ago
parent 14165d2f11
commit c38ca2edcf

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

Loading…
Cancel
Save