Merge pull request #3269 from vvlladd28/bug/bulk-import

[3.0] Correction bulk provision without telemetry
This commit is contained in:
Igor Kulikov 2020-08-10 14:36:56 +03:00 committed by GitHub
commit a736490a36
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -937,6 +937,7 @@ export class EntityService {
);
observables.push(observable);
}
if (observables.length) {
return forkJoin(observables).pipe(
map((response) => {
const hasError = response.filter((status) => status === 'error').length > 0;
@ -947,6 +948,9 @@ export class EntityService {
}
})
);
} else {
return of(null);
}
}
private getStateEntityInfo(filter: EntityAliasFilter, stateParams: StateParams): {entityId: EntityId} {