Unverified Commit 371d9694 authored by Eugen Rochko's avatar Eugen Rochko Committed by GitHub
Browse files

Fix missing delete and redraft link in web UI (#19485)

parent c7bab331
Showing with 1 addition and 0 deletions
+1 -0
......@@ -220,6 +220,7 @@ class ActionBar extends React.PureComponent {
menu.push(null);
menu.push({ text: intl.formatMessage(messages.edit), action: this.handleEditClick });
menu.push({ text: intl.formatMessage(messages.delete), action: this.handleDeleteClick });
menu.push({ text: intl.formatMessage(messages.redraft), action: this.handleRedraftClick });
} else {
menu.push({ text: intl.formatMessage(messages.mention, { name: status.getIn(['account', 'username']) }), action: this.handleMentionClick });
menu.push(null);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment