|
|
|
@ -298,6 +298,12 @@ export class ConversationHeader extends React.Component<Props> {
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public onShowUserDetails(userPubKey: string) {
|
|
|
|
|
if (this.props.onShowUserDetails) {
|
|
|
|
|
this.props.onShowUserDetails(userPubKey);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private renderMemberCount() {
|
|
|
|
|
const memberCount = this.props.members.length;
|
|
|
|
|
|
|
|
|
@ -403,9 +409,4 @@ export class ConversationHeader extends React.Component<Props> {
|
|
|
|
|
</React.Fragment>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public onShowUserDetails(userPubKey: string) {
|
|
|
|
|
if (this.props.onShowUserDetails)
|
|
|
|
|
this.props.onShowUserDetails(userPubKey);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|