mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
fix error handling and "this" context (#1445)
* fix error handling and "this" context * fix typo
This commit is contained in:
@@ -167,7 +167,7 @@ export class UploadService {
|
||||
return res;
|
||||
})
|
||||
.do(data => this.logService.info('Node data', data)) // eyeball results in the console
|
||||
.catch((err) => this.handleError(err));
|
||||
.catch(err => this.handleError(err));
|
||||
}
|
||||
|
||||
private callApiCreateFolder(relativePath: string, name: string) {
|
||||
|
Reference in New Issue
Block a user