Browse Source

Fix M hotkey inserting @undefined when in detailed status (#7931)

Fix #7903
pull/4/head
Eugen Rochko 5 years ago
committed by Yamagishi Kazutoshi
parent
commit
23e1f143de
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/javascript/mastodon/features/status/index.js

+ 1
- 1
app/javascript/mastodon/features/status/index.js View File

@ -276,7 +276,7 @@ export default class Status extends ImmutablePureComponent {
handleHotkeyMention = e => {
e.preventDefault();
this.handleMentionClick(this.props.status);
this.handleMentionClick(this.props.status.get('account'));
}
handleHotkeyOpenProfile = () => {

Loading…
Cancel
Save