Skip to content
Snippets Groups Projects
Commit fa16cea6 authored by Erik Willing's avatar Erik Willing
Browse files

Display tag selection while creating comment.

parent fe62850b
Branches
Tags
No related merge requests found
......@@ -23,19 +23,15 @@
</div>
<div class="anchor-wrp">
<div class="anchor-right">
<mat-form-field *ngIf="tags"
class="tag-form-field">
<mat-form-field *ngIf="tags" class="tag-form-field">
<mat-label>
<mat-icon class="icon-svg"
svgIcon="comment_tag"></mat-icon>
{{'comment-page.tag' | translate}}</mat-label>
<mat-select [(ngModel)]="selectedTag"
class="tag-select">
<mat-icon class="icon-svg" svgIcon="comment_tag"></mat-icon>
{{'comment-page.tag' | translate}}
</mat-label>
<label for="tagSelect">{{selectedTag}}</label>
<mat-select [(ngModel)]="selectedTag" class="tag-select" id="tagSelect" style="display: inline">
<mat-option>{{'comment-page.tag-reset' | translate}}</mat-option>
<mat-option *ngFor="let tag of tags"
value="{{tag}}">
{{tag}}
</mat-option>
<mat-option *ngFor="let tag of tags" value="{{tag}}">{{tag}}</mat-option>
</mat-select>
</mat-form-field>
</div>
......
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