RED-8269: fixed missing type value in resize dialog.

This commit is contained in:
Nicoleta Panaghiu 2024-01-31 10:52:16 +02:00
parent c299188720
commit 5c2326a952

View File

@ -55,7 +55,7 @@ export class ResizeRedactionDialogComponent extends IqserDialogComponent<
#getForm() {
return this._formBuilder.group({
comment: [null],
dictionary: new FormControl({ value: this.redaction.typeLabel, disabled: true }),
dictionary: new FormControl({ value: this.redaction.type, disabled: true }),
option: this.options[0],
});
}