Merge pull request #116 from Mikunj/fix/conversation-menu

Fix menu items not triggering
pull/117/head
sachaaaaa 6 years ago committed by GitHub
commit 81ce63c9a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -251,6 +251,8 @@ export class ConversationHeader extends React.Component<Props> {
public render() {
const { id } = this.props;
const triggerId = `${id}-${Date.now()}`;
return (
<div className="module-conversation-header">
{this.renderBackButton()}
@ -261,8 +263,8 @@ export class ConversationHeader extends React.Component<Props> {
</div>
</div>
{this.renderExpirationLength()}
{this.renderGear(id)}
{this.renderMenu(id)}
{this.renderGear(triggerId)}
{this.renderMenu(triggerId)}
</div>
);
}

Loading…
Cancel
Save