Browse Source

Fix menu items that don't action (#10379)

pull/4/head
mayaeh 5 years ago
committed by Eugen Rochko
parent
commit
186f7bcbb6
1 changed files with 9 additions and 0 deletions
  1. +9
    -0
      app/javascript/mastodon/features/account_timeline/components/header.js

+ 9
- 0
app/javascript/mastodon/features/account_timeline/components/header.js View File

@ -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}
/>

Loading…
Cancel
Save