mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-11 16:05:44 +01:00
make delete link clickable via tab
This commit is contained in:
@@ -11,7 +11,7 @@ class NavAction extends React.Component<Props> {
|
|||||||
const { label, action } = this.props;
|
const { label, action } = this.props;
|
||||||
return (
|
return (
|
||||||
<li>
|
<li>
|
||||||
<a onClick={action} role="button" tabIndex="0">{label}</a>
|
<a onClick={action} href="javascript:void(0);">{label}</a>
|
||||||
</li>
|
</li>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user