Minor improvements
This commit is contained in:
parent
43d221e5ce
commit
1d2918f0a1
@ -269,9 +269,8 @@ export class EntityAutocompleteComponent implements ControlValueAccessor, OnInit
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
} else {
|
} else if (value.entityType && value.id) {
|
||||||
const targetEntityType = this.checkEntityType(value.entityType);
|
const targetEntityType = this.checkEntityType(value.entityType);
|
||||||
if (value.id) {
|
|
||||||
this.entityService.getEntity(targetEntityType, value.id, {ignoreLoading: true, ignoreErrors: true}).subscribe(
|
this.entityService.getEntity(targetEntityType, value.id, {ignoreLoading: true, ignoreErrors: true}).subscribe(
|
||||||
(entity) => {
|
(entity) => {
|
||||||
this.modelValue = entity.id.id;
|
this.modelValue = entity.id.id;
|
||||||
@ -288,10 +287,6 @@ export class EntityAutocompleteComponent implements ControlValueAccessor, OnInit
|
|||||||
} else {
|
} else {
|
||||||
this.modelValue = null;
|
this.modelValue = null;
|
||||||
this.selectEntityFormGroup.get('entity').patchValue('', {emitEvent: false});
|
this.selectEntityFormGroup.get('entity').patchValue('', {emitEvent: false});
|
||||||
if (value !== null) {
|
|
||||||
this.propagateChange(this.modelValue);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
this.modelValue = null;
|
this.modelValue = null;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user