mirror of
https://github.com/scm-manager/scm-manager.git
synced 2026-01-20 14:32:12 +01:00
Merged in bugfix/deleteButtonNotReachable (pull request #157)
Bugfix/deleteButtonNotReachable
This commit is contained in:
@@ -43,6 +43,7 @@ class ConfirmAlert extends React.Component<Props> {
|
||||
<button
|
||||
key={i}
|
||||
onClick={() => this.handleClickButton(button)}
|
||||
href="javascript:void(0);"
|
||||
>
|
||||
{button.label}
|
||||
</button>
|
||||
|
||||
@@ -18,7 +18,7 @@ class NavAction extends React.Component<Props> {
|
||||
|
||||
return (
|
||||
<li>
|
||||
<a onClick={action}>{showIcon}{label}</a>
|
||||
<a onClick={action} href="javascript:void(0);">{showIcon}{label}</a>
|
||||
</li>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -28,7 +28,7 @@ export class DeleteGroupNavLink extends React.Component<Props> {
|
||||
buttons: [
|
||||
{
|
||||
label: t("delete-group-button.confirm-alert.submit"),
|
||||
onClick: () => this.deleteGroup()
|
||||
onClick: () => this.deleteGroup(),
|
||||
},
|
||||
{
|
||||
label: t("delete-group-button.confirm-alert.cancel"),
|
||||
|
||||
Reference in New Issue
Block a user