Skip to content
Snippets Groups Projects
Commit 19a4e021 authored by Lukas Mauß's avatar Lukas Mauß
Browse files

Merge branch 'fixFeedback' into 'master'

fix path for feedback view

See merge request arsnova/arsnova-lite!164
parents ece85cc9 63149d81
No related merge requests found
......@@ -30,7 +30,7 @@
</mat-grid-tile>
<mat-grid-tile>
<button mat-icon-button color="primary" matTooltip="{{ 'room-page.give-feedback' | translate}}"
routerLink="/participant/room/{{ room.id }}/feedback-barometer">
routerLink="/participant/room/{{ room.shortId }}/feedback-barometer">
<mat-icon>thumbs_up_down</mat-icon>
</button>
</mat-grid-tile>
......
......@@ -30,7 +30,7 @@ export class FeedbackBarometerPageComponent implements OnInit {
private notification: NotificationService,
private rxStompService: RxStompService,
private route: ActivatedRoute, ) {
this.roomId = this.route.snapshot.params.roomId;
this.roomId = localStorage.getItem(`roomId`);
}
ngOnInit() {
......
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