fix reply for incoming messages (#1930)

pull/1931/head
Audric Ackermann 4 years ago committed by GitHub
parent 1d459ba533
commit e3c27f1016
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -63,7 +63,8 @@ export const MessageContextMenu = (props: Props) => {
isBlocked,
} = selected;
const { messageId, contextMenuId } = props;
const showRetry = status === 'error' && direction === 'outgoing';
const isOutgoing = direction === 'outgoing';
const showRetry = status === 'error' && isOutgoing;
const isSent = status === 'sent';
const multipleAttachments = attachments && attachments.length > 1;
@ -169,7 +170,7 @@ export const MessageContextMenu = (props: Props) => {
) : null}
<Item onClick={copyText}>{window.i18n('copyMessage')}</Item>
{isSent && <Item onClick={onReply}>{window.i18n('replyToMessage')}</Item>}
{(isSent || !isOutgoing) && <Item onClick={onReply}>{window.i18n('replyToMessage')}</Item>}
<Item onClick={onShowDetail}>{window.i18n('moreInformation')}</Item>
{showRetry ? <Item onClick={onRetry}>{window.i18n('resend')}</Item> : null}
{isDeletable ? (

Loading…
Cancel
Save