Fix unrelated bug with changing detail tab before tag loaded

This commit is contained in:
shamoon 2023-11-04 10:02:12 -07:00
parent bf9954152e
commit 728866672b

View File

@ -45,7 +45,7 @@
<small *ngIf="getSuggestions().length > 0">
<span i18n>Suggestions:</span>&nbsp;
<ng-container *ngFor="let tag of getSuggestions()">
<a (click)="addTag(tag.id)" [routerLink]="[]">{{tag.name}}</a>&nbsp;
<a (click)="addTag(tag.id)" [routerLink]="[]">{{tag?.name}}</a>&nbsp;
</ng-container>
</small>
</div>