Skip to content
Snippets Groups Projects
Commit e529c84b authored by Klaus-Dieter Quibeldey-Cirkel's avatar Klaus-Dieter Quibeldey-Cirkel
Browse files

rework tag select

parent 1231e5d3
No related merge requests found
......@@ -5,11 +5,12 @@
<mat-form-field *ngIf="tags"
class="tag-form-field">
<mat-label>
<mat-icon class="icon-svg" svgIcon="comment_tag"></mat-icon>
<mat-icon class="icon-svg"
svgIcon="comment_tag"></mat-icon>
{{'comment-page.tag' | translate}}</mat-label>
<mat-select [(ngModel)]="selectedTag"
class="tag-select">
<mat-option value="">{{'comment-page.tag-reset' | translate}}</mat-option>
<mat-option>{{'comment-page.tag-reset' | translate}}</mat-option>
<mat-option *ngFor="let tag of tags"
value="{{tag}}">
{{tag}}
......
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