diff options
author | mayaeh <mayaeh@marimo-net.org> | 2019-03-26 13:31:09 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2019-03-26 05:31:09 +0100 |
commit | 186f7bcbb64e289fb732272c67eae6cb59276941 (patch) | |
tree | 3abe15432f56639d040e65dcf8e3afb786f6ca74 /app | |
parent | e11796432514afb49f3d891f805973a37f00fcf1 (diff) |
Fix menu items that don't action (#10379)
Diffstat (limited to 'app')
-rw-r--r-- | app/javascript/mastodon/features/account_timeline/components/header.js | 9 |
1 files changed, 9 insertions, 0 deletions
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} /> |