Skip to content
Snippets Groups Projects
Commit 07af8c05 authored by unarist's avatar unarist Committed by Eugen Rochko
Browse files

Fix "Edit profile" on the account action bar (#3222)

parent aa662cec
No related branches found
No related tags found
No related merge requests found
......@@ -33,11 +33,14 @@ class DropdownMenu extends React.PureComponent {
const i = Number(e.currentTarget.getAttribute('data-index'));
const { action, to } = this.props.items[i];
e.preventDefault();
// Don't call e.preventDefault() when the item uses 'href' property.
// ex. "Edit profile" on the account action bar
if (typeof action === 'function') {
e.preventDefault();
action();
} else if (to) {
e.preventDefault();
this.context.router.push(to);
}
......
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