Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
arsnova-lite
Manage
Activity
Members
Labels
Plan
Issues
24
Issue boards
Milestones
Wiki
Code
Merge requests
2
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Privacy
Imprint
Contact
Snippets
Groups
Projects
Show more breadcrumbs
ARSnova
arsnova-lite
Merge requests
!355
Fix async handling
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix async handling
fix-async
into
master
Overview
0
Commits
1
Pipelines
1
Changes
1
Merged
Tom Käsler
requested to merge
fix-async
into
master
5 years ago
Overview
0
Commits
1
Pipelines
1
Changes
1
Expand
The dialog should only be closed after the event got emitted.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
a697beae
1 commit,
5 years ago
1 file
+
2
−
2
Expand all files
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/app/components/creator/_dialogs/room-edit/room-edit.component.ts
+
2
−
2
Options
@@ -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`
]);
}
}