Merge branch 'RED-8269' into 'master'

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

See merge request redactmanager/red-ui!280
This commit is contained in:
Valentin-Gabriel Mihai 2024-01-31 09:53:02 +01:00
commit f4f2dcb2d3

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],
});
}