Merged in bugfix/deleteButtonNotReachable (pull request #157)

Bugfix/deleteButtonNotReachable
This commit is contained in:
Philipp Czora
2019-01-23 17:56:20 +00:00
3 changed files with 3 additions and 2 deletions

View File

@@ -43,6 +43,7 @@ class ConfirmAlert extends React.Component<Props> {
<button
key={i}
onClick={() => this.handleClickButton(button)}
href="javascript:void(0);"
>
{button.label}
</button>

View File

@@ -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>
);
}

View File

@@ -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"),