Fix event deletion redirection

Closes #170

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2019-09-23 11:33:13 +02:00
parent 0af855fdb8
commit b70a204e06
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
2 changed files with 1 additions and 2 deletions

View File

@ -35,7 +35,6 @@ export default class EventMixin extends mixins(Vue) {
}
private async deleteEvent(event: IEvent, currentActor: IPerson) {
const router = this.$router;
const eventTitle = event.title;
try {
@ -54,6 +53,7 @@ export default class EventMixin extends mixins(Vue) {
position: 'is-bottom-right',
duration: 5000,
});
await this.$router.push({ name: RouteName.HOME });
} catch (error) {
console.error(error);
}

View File

@ -260,7 +260,6 @@ export default class Event extends EventMixin {
*/
async openDeleteEventModalWrapper() {
await this.openDeleteEventModal(this.event, this.currentActor);
await this.$router.push({ name: RouteName.HOME });
}
async reportEvent(content: string, forward: boolean) {