Browse Source

UI: Fixed entity autocomplete

pull/12897/head
Artem Dzhereleiko 1 year ago
parent
commit
e81e248bf2
  1. 2
      ui-ngx/src/app/shared/components/entity/entity-autocomplete.component.ts

2
ui-ngx/src/app/shared/components/entity/entity-autocomplete.component.ts

@ -391,7 +391,7 @@ export class EntityAutocompleteComponent implements ControlValueAccessor, OnInit
private updateView(value: string | EntityId | null, entity: BaseData<EntityId> | null) {
if (!isEqual(this.modelValue, value)) {
this.modelValue = value;
this.entityURL = !entity ? '' : getEntityDetailsPageURL(entity.id.id, entity.id.entityType as EntityType);
this.entityURL = (typeof entity === 'string' || !entity) ? '' : getEntityDetailsPageURL(entity.id.id, entity.id.entityType as EntityType);
this.propagateChange(this.modelValue);
this.entityChanged.emit(entity);
}

Loading…
Cancel
Save