Skip to content
Snippets Groups Projects
Commit 1d641195 authored by Lukas Haase's avatar Lukas Haase
Browse files

resolve add tags bug

parent 7c276832
Branches
Tags
No related merge requests found
......@@ -207,6 +207,7 @@ export class RoomCreatorPageComponent extends RoomPageComponent implements OnIni
}
showTagsDialog(): void {
this.updRoom = JSON.parse(JSON.stringify(this.room));
const dialogRef = this.dialog.open(TagsComponent, {
width: '400px'
});
......@@ -220,7 +221,7 @@ export class RoomCreatorPageComponent extends RoomPageComponent implements OnIni
if (result === 'abort') {
return;
} else {
this.room.extensions['tags'] = result;
this.updRoom.extensions['tags'] = result;
this.saveChanges();
}
});
......
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