mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-18 23:49:20 +01:00
Do not display call buttons for SMS-only convo
This commit is contained in:
@@ -35,6 +35,7 @@ export type PropsDataType = {
|
||||
isMissingMandatoryProfileSharing?: boolean;
|
||||
outgoingCallButtonStyle: OutgoingCallButtonStyle;
|
||||
showBackButton?: boolean;
|
||||
isSMSOnly?: boolean;
|
||||
} & Pick<
|
||||
ConversationType,
|
||||
| 'acceptedMessageRequest'
|
||||
@@ -570,7 +571,7 @@ export class ConversationHeader extends React.Component<PropsType, StateType> {
|
||||
}
|
||||
|
||||
public render(): ReactNode {
|
||||
const { id } = this.props;
|
||||
const { id, isSMSOnly } = this.props;
|
||||
const { isNarrow } = this.state;
|
||||
const triggerId = `conversation-${id}`;
|
||||
|
||||
@@ -593,7 +594,7 @@ export class ConversationHeader extends React.Component<PropsType, StateType> {
|
||||
>
|
||||
{this.renderBackButton()}
|
||||
{this.renderHeader()}
|
||||
{this.renderOutgoingCallButtons()}
|
||||
{!isSMSOnly && this.renderOutgoingCallButtons()}
|
||||
{this.renderSearchButton()}
|
||||
{this.renderMoreButton(triggerId)}
|
||||
{this.renderMenu(triggerId)}
|
||||
|
||||
Reference in New Issue
Block a user