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

Fix room-list-length-check

parent 03283782
Branches
Tags
No related merge requests found
......@@ -20,7 +20,7 @@
{{ room.description }}
</p>
</mat-expansion-panel>
<mat-card *ngIf="rooms.length === 0">
<mat-card *ngIf="rooms && rooms.length === 0">
<mat-card-header>
<mat-card-title *ngIf="baseUrl === 'creator'">Sie haben noch keine Sessions erstellt!</mat-card-title>
<mat-card-title *ngIf="baseUrl === 'participant'">Sie sind noch keiner Session beigetreten!</mat-card-title>
......
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