diff --git a/ui-ngx/src/app/shared/components/entity/entity-autocomplete.component.ts b/ui-ngx/src/app/shared/components/entity/entity-autocomplete.component.ts index 36b9b24bef..631a1ad236 100644 --- a/ui-ngx/src/app/shared/components/entity/entity-autocomplete.component.ts +++ b/ui-ngx/src/app/shared/components/entity/entity-autocomplete.component.ts @@ -309,7 +309,7 @@ export class EntityAutocompleteComponent implements ControlValueAccessor, OnInit this.selectEntityFormGroup.get('entity').patchValue('', {emitEvent: false}); } - updateView(value: string | EntityId | null, entity: BaseData | null) { + updateView(value: string | null, entity: BaseData | null) { if (!isEqual(this.modelValue, value)) { this.modelValue = value; this.propagateChange(this.modelValue);