make delete link clickable via tab

This commit is contained in:
Maren Süwer
2019-01-22 16:36:25 +01:00
parent 18aefbdc87
commit 368e4e6dca

View File

@@ -11,7 +11,7 @@ class NavAction extends React.Component<Props> {
const { label, action } = this.props;
return (
<li>
<a onClick={action} role="button" tabIndex="0">{label}</a>
<a onClick={action} href="javascript:void(0);">{label}</a>
</li>
);
}