diff options
author | mayaeh <mayaeh@marimo-net.org> | 2019-03-26 13:31:09 +0900 |
---|---|---|
committer | ThibG <thib@sitedethib.com> | 2019-03-28 19:56:40 +0100 |
commit | cf3f063e106ccf23b255310112fc0944ae885aa1 (patch) | |
tree | a234e48d6cfb2e7758a4b82fe1dbba10bc4d804f | |
parent | 00f251b8fe7ee5c1143c880f113237c2fa543664 (diff) |
[Glitch] Fix menu items that don't action
Port 186f7bcbb64e289fb732272c67eae6cb59276941 to glitch-soc
-rw-r--r-- | app/javascript/flavours/glitch/features/account_timeline/components/header.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/app/javascript/flavours/glitch/features/account_timeline/components/header.js b/app/javascript/flavours/glitch/features/account_timeline/components/header.js index 8f742ee24..291db69df 100644 --- a/app/javascript/flavours/glitch/features/account_timeline/components/header.js +++ b/app/javascript/flavours/glitch/features/account_timeline/components/header.js @@ -99,6 +99,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} /> |