select message on click on message directly

pull/1344/head
Audric Ackermann 5 years ago
parent e83912e449
commit d6ad2a1911
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -1109,6 +1109,19 @@ export class Message extends React.PureComponent<Props, State> {
`module-message--${direction}`,
expiring ? 'module-message--expired' : null
)}
>
{this.renderError(isIncoming)}
{isRss || isKickedFromGroup
? null
: this.renderMenu(!isIncoming, triggerId)}
<div
className={classNames(
'module-message__container',
`module-message__container--${direction}`
)}
style={{
width: isShowingImage ? width : undefined,
}}
role="button"
onClick={event => {
const selection = window.getSelection();
@ -1125,19 +1138,6 @@ export class Message extends React.PureComponent<Props, State> {
this.props.onSelectMessage();
}}
>
{this.renderError(isIncoming)}
{isRss || isKickedFromGroup
? null
: this.renderMenu(!isIncoming, triggerId)}
<div
className={classNames(
'module-message__container',
`module-message__container--${direction}`
)}
style={{
width: isShowingImage ? width : undefined,
}}
>
{this.renderAuthor()}
{this.renderQuote()}

Loading…
Cancel
Save