Skip to content
Snippets Groups Projects
Commit ec7dd7f4 authored by Tom Käsler's avatar Tom Käsler
Browse files

Merge branch 'fix-async' into 'master'

Fix async handling

See merge request !355
parents cccc818d a697beae
1 merge request!355Fix async handling
Pipeline #29170 passed with stages
in 8 minutes and 17 seconds
......@@ -51,8 +51,8 @@ export class RoomEditComponent implements OnInit {
this.roomService.deleteRoom(room.id).subscribe(result => {
const event = new RoomDeleted(room.id);
this.eventService.broadcast(event.type, event.payload);
this.dialogRef.close('delete');
this.router.navigate([`/creator`]);
});
this.dialogRef.close('delete');
this.router.navigate([`/creator`]);
}
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment