mirror of
https://github.com/scm-manager/scm-manager.git
synced 2026-03-04 19:30:51 +01:00
fix redirect after delete Repo, Group or User
This commit is contained in:
@@ -39,7 +39,7 @@ export class DeleteGroup extends React.Component<Props> {
|
||||
};
|
||||
|
||||
groupDeleted = () => {
|
||||
this.props.history.push("/groups");
|
||||
this.props.history.push("/groups/");
|
||||
};
|
||||
|
||||
confirmDelete = () => {
|
||||
|
||||
@@ -35,7 +35,7 @@ class DeleteRepo extends React.Component<Props> {
|
||||
};
|
||||
|
||||
deleted = () => {
|
||||
this.props.history.push("/repos");
|
||||
this.props.history.push("/repos/");
|
||||
};
|
||||
|
||||
deleteRepo = () => {
|
||||
|
||||
@@ -35,7 +35,7 @@ class DeleteUser extends React.Component<Props> {
|
||||
};
|
||||
|
||||
userDeleted = () => {
|
||||
this.props.history.push("/users");
|
||||
this.props.history.push("/users/");
|
||||
};
|
||||
|
||||
deleteUser = () => {
|
||||
|
||||
Reference in New Issue
Block a user