make delete link reachable via tab; it is not clickable now

This commit is contained in:
Maren Süwer
2019-01-22 16:27:37 +01:00
parent 8125b061f1
commit 18aefbdc87

View File

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