Shown own sent state indicator even when showReadReceipts is disabled (#12540)
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>pull/28217/head
parent
8b8b75e4a5
commit
0c04ec1def
|
@ -1162,20 +1162,18 @@ export class UnwrappedEventTile extends React.Component<EventTileProps, IState>
|
||||||
const ircPadlock = useIRCLayout && !isBubbleMessage && this.renderE2EPadlock();
|
const ircPadlock = useIRCLayout && !isBubbleMessage && this.renderE2EPadlock();
|
||||||
|
|
||||||
let msgOption: JSX.Element | undefined;
|
let msgOption: JSX.Element | undefined;
|
||||||
if (this.props.showReadReceipts) {
|
if (this.shouldShowSentReceipt || this.shouldShowSendingReceipt) {
|
||||||
if (this.shouldShowSentReceipt || this.shouldShowSendingReceipt) {
|
msgOption = <SentReceipt messageState={this.props.mxEvent.getAssociatedStatus()} />;
|
||||||
msgOption = <SentReceipt messageState={this.props.mxEvent.getAssociatedStatus()} />;
|
} else if (this.props.showReadReceipts) {
|
||||||
} else {
|
msgOption = (
|
||||||
msgOption = (
|
<ReadReceiptGroup
|
||||||
<ReadReceiptGroup
|
readReceipts={this.props.readReceipts ?? []}
|
||||||
readReceipts={this.props.readReceipts ?? []}
|
readReceiptMap={this.props.readReceiptMap ?? {}}
|
||||||
readReceiptMap={this.props.readReceiptMap ?? {}}
|
checkUnmounting={this.props.checkUnmounting}
|
||||||
checkUnmounting={this.props.checkUnmounting}
|
suppressAnimation={this.suppressReadReceiptAnimation}
|
||||||
suppressAnimation={this.suppressReadReceiptAnimation}
|
isTwelveHour={this.props.isTwelveHour}
|
||||||
isTwelveHour={this.props.isTwelveHour}
|
/>
|
||||||
/>
|
);
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
let replyChain: JSX.Element | undefined;
|
let replyChain: JSX.Element | undefined;
|
||||||
|
|
Loading…
Reference in New Issue