@@ -43,7 +43,7 @@ <h4 *ngIf="currentVideos.length==0" id="noVideosMessage">This room doesn't have
4343 < div *ngIf ="this.moddedRooms!==undefined && this.moddedRooms.length>0 ">
4444 < h3 mat-subheader > MODDED ROOMS</ h3 >
4545 < mat-list-item *ngFor ="let mod of this.moddedRooms ">
46- < a mat-line mat-stroked-button routerLink =" {{ mod.name}} ">
46+ < a mat-line mat-stroked-button (click) =" goToRoom( mod.name) ">
4747 {{mod.name}}
4848 </ a >
4949 < button mat-icon-button (click) ="getInviteURL(mod.name,'moderator') ">
@@ -64,7 +64,7 @@ <h3 mat-subheader>MODDED ROOMS</h3>
6464 < div *ngIf ="this.presentedRooms!==undefined && this.presentedRooms.length>0 ">
6565 < h3 mat-subheader > PRESENTED ROOMS</ h3 >
6666 < mat-list-item *ngFor ="let pres of this.presentedRooms ">
67- < a mat-line mat-stroked-button routerLink =" {{ pres.name}} "> {{pres.name}}</ a >
67+ < a mat-line mat-stroked-button (click) =" goToRoom( pres.name) "> {{pres.name}}</ a >
6868 < button mat-icon-button (click) ="openVideos(pres.name) " *ngIf ="isRecordingEnabled ">
6969 < mat-icon matTooltip ="See recorded videos "> video_library</ mat-icon >
7070 </ button >
@@ -74,7 +74,7 @@ <h3 mat-subheader>PRESENTED ROOMS</h3>
7474 < div *ngIf ="this.participatedRooms!==undefined && this.participatedRooms.length>0 ">
7575 < h3 mat-subheader > PARTICIPATED ROOMS</ h3 >
7676 < mat-list-item *ngFor ="let part of this.participatedRooms ">
77- < a mat-line mat-stroked-button routerLink =" {{ part.name}} "> {{part.name}}</ a >
77+ < a mat-line mat-stroked-button (click) =" goToRoom( part.name) "> {{part.name}}</ a >
7878 < button mat-icon-button (click) ="openVideos(part.name) " *ngIf ="isRecordingEnabled ">
7979 < mat-icon matTooltip ="See recorded videos "> video_library</ mat-icon >
8080 </ button >
0 commit comments