[frontend] Fix hood name in title

This commit is contained in:
Cathy Hu 2020-08-31 19:18:58 +02:00
parent 43151b23d0
commit 5c39720802

View file

@ -5,8 +5,8 @@
</div>
<div class="dashboard">
<mat-card>
<mat-card-title>
Your Hood - <strong>{{ (hood$ | async).name }}</strong>
<mat-card-title *ngIf="hood$ | async as hood">
Your Hood - <strong>{{ hood.name }}</strong>
</mat-card-title>
</mat-card>