RED-6733: fix missing checkbox

This commit is contained in:
Dan Percic 2023-05-24 18:49:58 +03:00
parent e260b5782f
commit d8c7c5be43

View File

@ -1,6 +1,6 @@
<section class="dialog">
<form (submit)="save()" [formGroup]="form">
<div class="dialog-header heading-l" [translate]="'resize-annotation-dialog.header'"></div>
<div [translate]="'resize-annotation-dialog.header'" class="dialog-header heading-l"></div>
<div class="dialog-content">
<div class="iqser-input-group w-300">
@ -9,11 +9,8 @@
</div>
<div *ngIf="form.get('updateDictionary')" class="iqser-input-group">
<mat-checkbox
color="primary"
formControlName="updateDictionary"
[innerHTML]="'resize-annotation-dialog.content.update-dictionary' | translate : { text: this.text }"
>
<mat-checkbox color="primary" formControlName="updateDictionary"
><span [innerHTML]="'resize-annotation-dialog.content.update-dictionary' | translate : { text: this.text }"></span>
</mat-checkbox>
</div>
</div>
@ -26,7 +23,7 @@
[type]="iconButtonTypes.primary"
></iqser-icon-button>
<div class="all-caps-label cancel" mat-dialog-close [translate]="'resize-annotation-dialog.actions.cancel'"></div>
<div [translate]="'resize-annotation-dialog.actions.cancel'" class="all-caps-label cancel" mat-dialog-close></div>
</div>
</form>