From 5c2326a9524746d637b97c06a41f8243e6aa6eb2 Mon Sep 17 00:00:00 2001 From: Nicoleta Panaghiu Date: Wed, 31 Jan 2024 10:52:16 +0200 Subject: [PATCH] RED-8269: fixed missing type value in resize dialog. --- .../resize-redaction-dialog.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/red-ui/src/app/modules/file-preview/dialogs/resize-redaction-dialog/resize-redaction-dialog.component.ts b/apps/red-ui/src/app/modules/file-preview/dialogs/resize-redaction-dialog/resize-redaction-dialog.component.ts index a3f16760c..8ea7678d2 100644 --- a/apps/red-ui/src/app/modules/file-preview/dialogs/resize-redaction-dialog/resize-redaction-dialog.component.ts +++ b/apps/red-ui/src/app/modules/file-preview/dialogs/resize-redaction-dialog/resize-redaction-dialog.component.ts @@ -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], }); }