After delete a ticket redirect to previous page (#1044)

This commit is contained in:
Joel Elias Méndez 2021-10-08 16:09:39 -03:00 committed by GitHub
parent 6ccb389492
commit af15d0116d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -636,7 +636,7 @@ class TicketViewer extends React.Component {
}
}).then((result) => {
this.onTicketModification(result);
history.push('/admin/panel/tickets/my-tickets/');
history.push(history.goBack());
});
}