Skip to content
Snippets Groups Projects
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
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment