diff --git a/src/app/components/shared/_dialogs/create-comment/create-comment.component.html b/src/app/components/shared/_dialogs/create-comment/create-comment.component.html index b2a76fad7c816a9134ef5aa7675ec9627229b2d7..e4897582b82f7c8fbb0936d3ab9ae1f2f2c0a25f 100644 --- a/src/app/components/shared/_dialogs/create-comment/create-comment.component.html +++ b/src/app/components/shared/_dialogs/create-comment/create-comment.component.html @@ -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>