From: mayaeh Date: Tue, 26 Mar 2019 04:31:09 +0000 (+0900) Subject: Fix menu items that don't action (#10379) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=186f7bcbb64e289fb732272c67eae6cb59276941;p=mastodon.git Fix menu items that don't action (#10379) --- diff --git a/app/javascript/mastodon/features/account_timeline/components/header.js b/app/javascript/mastodon/features/account_timeline/components/header.js index 7c621c090..16ada18c0 100644 --- a/app/javascript/mastodon/features/account_timeline/components/header.js +++ b/app/javascript/mastodon/features/account_timeline/components/header.js @@ -98,6 +98,15 @@ export default class Header extends ImmutablePureComponent { account={account} onFollow={this.handleFollow} onBlock={this.handleBlock} + onMention={this.handleMention} + onDirect={this.handleDirect} + onReblogToggle={this.handleReblogToggle} + onReport={this.handleReport} + onMute={this.handleMute} + onBlockDomain={this.handleBlockDomain} + onUnblockDomain={this.handleUnblockDomain} + onEndorseToggle={this.handleEndorseToggle} + onAddToList={this.handleAddToList} domain={this.props.domain} />