mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
exclude upload folder test as far we don't find a solution in chrome 73 (#4473)
* exclude upload folder test as far we don't find a solution in chrome 73 * exclude folder drag and drop test chrome 73 * fix test search * Update .travis.yml * xit C279918 C279916 * fix process-service cloud application list
This commit is contained in:
@@ -29,7 +29,8 @@ export class AppsProcessCloudService {
|
||||
constructor(
|
||||
private apiService: AlfrescoApiService,
|
||||
private logService: LogService,
|
||||
private appConfigService: AppConfigService) {}
|
||||
private appConfigService: AppConfigService) {
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets a list of deployed apps for this user by status.
|
||||
@@ -49,12 +50,12 @@ export class AppsProcessCloudService {
|
||||
return from(api.callCustomApi(path, 'GET', pathParams, queryParams, headerParams, formParams, bodyParam,
|
||||
contentTypes, accepts))
|
||||
.pipe(
|
||||
map((applications: ApplicationInstanceModel[]) => {
|
||||
return applications.map((application) => {
|
||||
return new ApplicationInstanceModel(application);
|
||||
map((applications: any) => {
|
||||
return applications.list.entries.map((application) => {
|
||||
return new ApplicationInstanceModel(application.entry);
|
||||
});
|
||||
}),
|
||||
catchError((err) => this.handleError(err))
|
||||
}),
|
||||
catchError((err) => this.handleError(err))
|
||||
);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user