update messages

This commit is contained in:
jonaswinkler
2021-01-29 16:57:00 +01:00
parent ea30fbf14f
commit a40e4fe3bc
3 changed files with 4 additions and 4 deletions

View File

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

View File

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