Removed "received at" from message details for outbound messages
This commit is contained in:
parent
fb31a02d88
commit
b9adee918f
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
// Copyright 2018-2021 Signal Messenger, LLC
|
// Copyright 2018-2022 Signal Messenger, LLC
|
||||||
// SPDX-License-Identifier: AGPL-3.0-only
|
// SPDX-License-Identifier: AGPL-3.0-only
|
||||||
|
|
||||||
import type { ReactChild, ReactNode } from 'react';
|
import type { ReactChild, ReactNode } from 'react';
|
||||||
|
@ -385,7 +385,7 @@ export class MessageDetail extends React.Component<Props> {
|
||||||
</span>
|
</span>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
{receivedAt ? (
|
{receivedAt && message.direction === 'incoming' ? (
|
||||||
<tr>
|
<tr>
|
||||||
<td className="module-message-detail__label">
|
<td className="module-message-detail__label">
|
||||||
{i18n('received')}
|
{i18n('received')}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue