fix redirect after delete Repo, Group or User

This commit is contained in:
Florian Scholdei
2019-06-04 14:48:59 +02:00
parent 7454442b37
commit b406ec3eb6
3 changed files with 3 additions and 3 deletions

View File

@@ -39,7 +39,7 @@ export class DeleteGroup extends React.Component<Props> {
};
groupDeleted = () => {
this.props.history.push("/groups");
this.props.history.push("/groups/");
};
confirmDelete = () => {

View File

@@ -35,7 +35,7 @@ class DeleteRepo extends React.Component<Props> {
};
deleted = () => {
this.props.history.push("/repos");
this.props.history.push("/repos/");
};
deleteRepo = () => {

View File

@@ -35,7 +35,7 @@ class DeleteUser extends React.Component<Props> {
};
userDeleted = () => {
this.props.history.push("/users");
this.props.history.push("/users/");
};
deleteUser = () => {