Update to Angular 13

This commit is contained in:
Yannic Schroeder
2022-02-17 00:16:57 +01:00
parent 03ad3cab46
commit 73f1bcc9ef
15 changed files with 3125 additions and 10626 deletions

View File

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